style.css 20 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249
  1. body {
  2. background-color: #121212;
  3. color: #f8f8f2;
  4. margin: 0;
  5. font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  6. font-size: 14px;
  7. line-height: 1.3;
  8. }
  9. * {
  10. outline: unset;
  11. }
  12. #posts {
  13. background-color: #161616;
  14. }
  15. #user {
  16. background-color: #242424;
  17. width: 100%;
  18. padding: 5pt;
  19. }
  20. #user > h1 {
  21. color: #ffffff;
  22. }
  23. h1 {
  24. margin: 0;
  25. display: inline;
  26. }
  27. h2 {
  28. margin: 0;
  29. font-weight: normal;
  30. }
  31. h3 {
  32. margin-bottom: 0;
  33. font-weight: normal;
  34. }
  35. h4 {
  36. margin: 0;
  37. }
  38. a {
  39. color: #ff6c60;
  40. text-decoration: none;
  41. }
  42. a:hover {
  43. text-decoration: underline;
  44. }
  45. button {
  46. background-color: #121212;
  47. color: #f8f8f2;
  48. border: 1px solid #ff6c6091;
  49. padding: 3px 6px;
  50. font-size: 14px;
  51. cursor: pointer;
  52. float: right;
  53. }
  54. button:hover {
  55. border-color: #ff6c60;
  56. }
  57. button:active {
  58. border-color: #ff9f97;
  59. }
  60. .status-el {
  61. overflow-wrap: break-word;
  62. border-left-width: 0;
  63. min-width: 0;
  64. padding: .75em;
  65. display: flex;
  66. }
  67. .status-body {
  68. flex: 1;
  69. min-width: 0;
  70. margin-left: 58px;
  71. }
  72. .tweet-header {
  73. padding: 0;
  74. vertical-align: bottom;
  75. flex-basis: 100%;
  76. margin-bottom: .2em;
  77. }
  78. .tweet-header a {
  79. display: inline-block;
  80. word-break: break-all;
  81. max-width: 100%;
  82. }
  83. .tweet-name-row {
  84. padding: 0;
  85. display: flex;
  86. justify-content: space-between;
  87. }
  88. .fullname-and-username {
  89. display: flex;
  90. min-width: 0;
  91. }
  92. .fullname {
  93. overflow: hidden;
  94. text-overflow: ellipsis;
  95. flex-shrink: 2;
  96. max-width: 80%;
  97. white-space: nowrap;
  98. font-size: 14px;
  99. font-weight: 700;
  100. color: #f8f8f2;
  101. }
  102. .username {
  103. min-width: 1.6em;
  104. margin-left: .4em;
  105. white-space: nowrap;
  106. word-wrap: normal;
  107. overflow: hidden;
  108. text-overflow: ellipsis;
  109. }
  110. .verified-icon {
  111. color: #fff;
  112. background-color: #1da1f2;
  113. border-radius: 50%;
  114. flex-shrink: 0;
  115. margin: 2px 0 3px 3px;
  116. padding-top: 2px;
  117. height: 12px;
  118. width: 14px;
  119. font-size: 8px;
  120. display: inline-block;
  121. text-align: center;
  122. vertical-align: middle;
  123. }
  124. .tweet-date {
  125. display: flex;
  126. flex-shrink: 0;
  127. margin-left: 4px;
  128. }
  129. .replying-to {
  130. color: hsla(240,1%,73%,.9);
  131. margin: -2px 0 4px 0;
  132. }
  133. .status-el .status-content {
  134. font-family: sans-serif;
  135. line-height: 1.4em;
  136. }
  137. .status-content.media-body {
  138. flex: 1;
  139. padding: 0;
  140. white-space: pre-wrap;
  141. }
  142. .container, .item {
  143. display: flex;
  144. }
  145. .container {
  146. flex-wrap: wrap;
  147. margin: 0;
  148. }
  149. #content {
  150. box-sizing: border-box;
  151. padding-top: 50px;
  152. margin: auto;
  153. min-height: 100vh;
  154. background-color: rgba(0,0,0,.15);
  155. }
  156. nav {
  157. z-index: 1000;
  158. background-color: #1f1f1f;
  159. color: hsla(240,1%,73%,.5);
  160. box-shadow: 0 0 4px rgba(0,0,0,.6);
  161. }
  162. .nav-bar {
  163. padding: 0;
  164. width: 100%;
  165. align-items: center;
  166. position: fixed;
  167. height: 50px;
  168. }
  169. .nav-bar .inner-nav {
  170. margin: auto;
  171. box-sizing: border-box;
  172. padding-left: 10px;
  173. padding-right: 10px;
  174. display: flex;
  175. align-items: center;
  176. flex-basis: 920px;
  177. height: 50px;
  178. }
  179. .item {
  180. flex: 1;
  181. line-height: 50px;
  182. height: 50px;
  183. overflow: hidden;
  184. flex-wrap: wrap;
  185. }
  186. .item.right {
  187. text-align: right;
  188. justify-content: flex-end;
  189. }
  190. .site-name {
  191. font-weight: 600;
  192. }
  193. .site-name:hover {
  194. color: #ffaca0;
  195. text-decoration: unset;
  196. }
  197. .site-logo {
  198. display: block;
  199. width: 35px;
  200. height: 35px;
  201. }
  202. .item.right a {
  203. padding-left: 4px;
  204. }
  205. .item.right a:hover {
  206. color: #ffaca0;
  207. text-decoration: unset;
  208. }
  209. .attachments {
  210. margin-top: .35em;
  211. display: flex;
  212. flex-direction: row;
  213. width: 100%;
  214. max-height: 600px;
  215. border-radius: 7px;
  216. overflow: hidden;
  217. flex-flow: column;
  218. background-color: #0f0f0f;
  219. align-items: center;
  220. }
  221. .gallery-row {
  222. display: flex;
  223. flex-direction: row;
  224. flex-wrap: nowrap;
  225. align-items: center;
  226. overflow: hidden;
  227. flex-grow: 1;
  228. max-height: 379.5px;
  229. max-width: 533px;
  230. }
  231. .gallery-row .attachment, .gallery-row .attachments {
  232. margin: 0 .25em 0 0;
  233. flex-grow: 1;
  234. box-sizing: border-box;
  235. min-width: 2em;
  236. }
  237. .gallery-row .attachment:last-child, .gallery-row .attachments:last-child, .video-container {
  238. margin: 0;
  239. max-height: 530px;
  240. }
  241. .attachments .attachment {
  242. position: relative;
  243. line-height: 0;
  244. border-color: #222;
  245. overflow: hidden;
  246. }
  247. .gallery-row .still-image, .attachments .image-attachment {
  248. width: 100%;
  249. }
  250. .gallery-video {
  251. display: flex;
  252. overflow: hidden;
  253. }
  254. video, .video-container img {
  255. height: 100%;
  256. width: 100%;
  257. }
  258. .media-gif {
  259. display: inline-block;
  260. background-color: unset;
  261. }
  262. .video-overlay {
  263. width: 100%;
  264. height: 100%;
  265. position: absolute;
  266. top: 0;
  267. left: 0;
  268. z-index: 1;
  269. background-color: #0000009d;
  270. }
  271. .video-overlay p {
  272. position: relative;
  273. z-index: 0;
  274. text-align: center;
  275. top: calc(50% - 20px);
  276. font-size: 20px;
  277. line-height: 1.3;
  278. margin: 0 20px;
  279. }
  280. .video-overlay div {
  281. position: relative;
  282. z-index: 0;
  283. top: calc(50% - 20px);
  284. margin: 0 auto;
  285. width: 40px;
  286. height: 40px;
  287. }
  288. .video-overlay form {
  289. width: 100%;
  290. height: 100%;
  291. align-items: center;
  292. justify-content: center;
  293. display: flex;
  294. }
  295. .still-image {
  296. max-height: 379.5px;
  297. max-width: 533px;
  298. justify-content: center;
  299. }
  300. .still-image img {
  301. object-fit: cover;
  302. max-width: 533px;
  303. max-height: 379.5px;
  304. border-color: #222;
  305. flex-basis: 300px;
  306. }
  307. .image {
  308. display: inline-block;
  309. }
  310. .single-image {
  311. display: inline-block;
  312. width: unset;
  313. }
  314. .avatar {
  315. float: left;
  316. margin-top: 3px;
  317. margin-left: -58px;
  318. position: absolute;
  319. width: 48px;
  320. height: 48px;
  321. border-radius: 50%;
  322. }
  323. .tweet-avatar {
  324. display: contents !important;
  325. }
  326. .retweet {
  327. margin-top: -5px !important;
  328. }
  329. .retweet, .pinned, .tweet-stats {
  330. align-content: center;
  331. color: hsla(240,1%,73%,.7);
  332. display: flex;
  333. flex-shrink: 0;
  334. flex-wrap: wrap;
  335. font-size: 14px;
  336. font-weight: 600;
  337. line-height: 22px;
  338. margin: 0;
  339. max-width: 85%;
  340. overflow: hidden;
  341. text-overflow: ellipsis;
  342. white-space: nowrap;
  343. margin-bottom: -3px;
  344. }
  345. .tweet-stat {
  346. padding-top: 5px;
  347. padding-right: 8px;
  348. }
  349. .show-more {
  350. background-color: #161616;
  351. text-align: center;
  352. padding: .75em 0;
  353. display: block;
  354. }
  355. .show-more.status-el {
  356. border-bottom: 1px solid #3e3e35;
  357. }
  358. .show-more a {
  359. background-color: #242424;
  360. display: inline-block;
  361. height: 2em;
  362. padding: 0 2em;
  363. line-height: 2em;
  364. }
  365. .show-more a:hover {
  366. background-color: #282828;
  367. }
  368. .show-thread {
  369. display: block;
  370. }
  371. .multi-header {
  372. background-color: #161616;
  373. text-align: center;
  374. padding: 10px;
  375. display: block;
  376. font-weight: bold;
  377. margin-bottom: 5px;
  378. }
  379. .multi-timeline {
  380. max-width: 600px;
  381. margin: 0 auto;
  382. }
  383. .profile-tabs {
  384. max-width: 900px;
  385. margin: 0 auto;
  386. float: none;
  387. border-radius: 0;
  388. position: relative;
  389. width: auto;
  390. }
  391. .timeline-tab {
  392. float: right;
  393. padding: 0;
  394. box-sizing: border-box;
  395. display: inline-block;
  396. font-size: 14px;
  397. margin: 0;
  398. text-align: left;
  399. vertical-align: top;
  400. }
  401. .profile-tabs > .timeline-tab {
  402. width: 68% !important;
  403. }
  404. .profile-tab {
  405. padding: 0 4px 0 0;
  406. box-sizing: border-box;
  407. display: inline-block;
  408. font-size: 14px;
  409. margin: 0;
  410. text-align: left;
  411. vertical-align: top;
  412. max-width: 32%;
  413. top: 50px;
  414. }
  415. .profile-banner {
  416. padding-bottom: 4px;
  417. }
  418. .profile-banner a {
  419. display: inherit;
  420. line-height: 0;
  421. }
  422. .profile-banner img {
  423. width: 100%;
  424. }
  425. .profile-banner-color {
  426. width: 100%;
  427. padding-bottom: 25%;
  428. }
  429. .profile-card {
  430. flex-wrap: wrap;
  431. background: #161616;
  432. padding: 12px;
  433. display: flex;
  434. }
  435. .profile-card-tabs-name {
  436. max-width: 100%;
  437. }
  438. .profile-card-username, .profile-card-fullname {
  439. color: #f8f8f2;
  440. }
  441. .profile-card-fullname {
  442. font-size: 16px;
  443. text-shadow: none;
  444. text-overflow: ellipsis;
  445. max-width: 100%;
  446. font-weight: bold;
  447. overflow-wrap: break-word;
  448. }
  449. .profile-card-username {
  450. font-size: 14px;
  451. overflow: hidden;
  452. text-overflow: ellipsis;
  453. display: block;
  454. }
  455. .profile-card-avatar {
  456. display: block;
  457. width: 100%;
  458. padding-bottom: 16px;
  459. margin-right: 4px;
  460. }
  461. .profile-card-avatar img {
  462. display: block;
  463. width: calc(100% - 4px);
  464. height: 100%;
  465. margin: 0;
  466. border: 4px solid #282828;
  467. background: #040404;
  468. }
  469. .profile-card-extra {
  470. display: contents;
  471. flex: 100%;
  472. margin-top: 6px;
  473. }
  474. .profile-bio {
  475. overflow: hidden;
  476. overflow-wrap: break-word;
  477. width: 100%;
  478. margin: 4px -6px 6px 0px;
  479. }
  480. .profile-bio p {
  481. margin: 0;
  482. }
  483. .profile-location, .profile-website, .profile-joindate {
  484. color: #f8f8f2cf;
  485. margin: 2px 0px;
  486. width: 100%;
  487. }
  488. .profile-description {
  489. font-size: 14px;
  490. font-weight: 400;
  491. overflow: hidden;
  492. word-break: normal;
  493. word-wrap: break-word;
  494. }
  495. .photo-rail-card {
  496. float: left;
  497. background: #161616;
  498. border-radius: 0 0 4px 4px;
  499. width: 100%;
  500. margin-top: 5px;
  501. }
  502. .photo-rail-header {
  503. padding: 5px 12px 0px 12px;
  504. }
  505. .photo-rail-grid {
  506. display: grid;
  507. grid-template-columns: repeat(4, 1fr);
  508. grid-gap: 3px 3px;
  509. padding: 5px 12px 12px 12px;
  510. }
  511. .photo-rail-grid a {
  512. position: relative;
  513. border-radius: 5px;
  514. }
  515. .photo-rail-grid a:before {
  516. content: "";
  517. display: block;
  518. padding-top: 100%;
  519. }
  520. .photo-rail-grid img {
  521. height: 100%;
  522. width: 100%;
  523. border-radius: 4px;
  524. object-fit: cover;
  525. position: absolute;
  526. top: 0;
  527. left: 0;
  528. bottom: 0;
  529. right: 0;
  530. }
  531. .tab {
  532. align-items: center;
  533. display: flex;
  534. flex-wrap: wrap;
  535. list-style: none;
  536. margin: 0 0 5px 0;
  537. background-color: #161616;
  538. padding: 0;
  539. }
  540. .tab .tab-item {
  541. margin-top: 0;
  542. }
  543. .tab-item {
  544. flex: 1 1 0;
  545. text-align: center;
  546. }
  547. .tab .tab-item a.active, .tab .tab-item.active a {
  548. border-bottom-color: #ff6c60;
  549. color: #ff6c60;
  550. }
  551. .tab .tab-item a {
  552. border-bottom: .1rem solid transparent;
  553. color: inherit;
  554. display: block;
  555. padding: 8px 0;
  556. text-decoration: none;
  557. font-weight: bold;
  558. }
  559. .conversation {
  560. max-width: 610px;
  561. margin: 0 auto;
  562. float: none;
  563. border-radius: 0;
  564. position: relative;
  565. width: 100%;
  566. background-color: #0f0f0f !important;
  567. }
  568. .main-thread {
  569. margin-bottom: 20px;
  570. background-color: #161616;
  571. }
  572. .main-tweet .status-content {
  573. font-size: 22px;
  574. line-height: 30px;
  575. letter-spacing: .01em;
  576. }
  577. .reply {
  578. background-color: #161616;
  579. margin-bottom: 10px;
  580. }
  581. .more-replies {
  582. padding-top: 0.3em;
  583. }
  584. .more-replies-text {
  585. display: block;
  586. margin-left: 58px;
  587. padding: 7px 0;
  588. text-overflow: ellipsis;
  589. white-space: nowrap;
  590. }
  591. .thread-line .status-el::before {
  592. background: #8a3731;
  593. content: '';
  594. position: relative;
  595. width: 3px;
  596. min-width: 3px;
  597. left: 26px;
  598. border-radius: 2px;
  599. margin-left: -3px;
  600. top: 56px;
  601. margin-bottom: 37px;
  602. }
  603. .thread-line .unavailable::before {
  604. top: 48px;
  605. margin-bottom: 28px;
  606. }
  607. .thread-last .status-el::before {
  608. background: unset;
  609. min-width: unset;
  610. width: 0;
  611. margin: 0;
  612. }
  613. .thread-line .more-replies::before {
  614. content: '...';
  615. background: unset;
  616. color: #ad433b;
  617. font-weight: bold;
  618. font-size: 22px;
  619. line-height: 0.25em;
  620. left: 1.2em;
  621. width: 5px;
  622. top: 2px;
  623. margin-bottom: 0px;
  624. margin-left: -5px;
  625. }
  626. .panel {
  627. margin: auto;
  628. font-size: 130%;
  629. }
  630. .error-panel {
  631. background-color: #420a05 !important;
  632. }
  633. .error-panel, .search-panel > form {
  634. padding: 12px;
  635. border-radius: 4px;
  636. display: flex;
  637. background: #222222;
  638. box-shadow: 0 0 15px rgba(0,0,0,.2);
  639. margin: auto;
  640. margin-top: -50px;
  641. }
  642. .search-panel > form > button {
  643. font-size: 14px;
  644. line-height: 24px;
  645. display: block;
  646. border: 0;
  647. border-radius: 4px;
  648. background: #2f2f2f;
  649. color: #f8f8f2;
  650. outline: 0;
  651. text-decoration: none;
  652. text-align: center;
  653. box-sizing: border-box;
  654. cursor: pointer;
  655. font-weight: bold;
  656. width: 37px;
  657. height: 32px;
  658. padding: 0;
  659. }
  660. .search-panel > form > input {
  661. box-sizing: border-box;
  662. font-size: 16px;
  663. display: block;
  664. width: 100%;
  665. outline: 0;
  666. font-family: inherit;
  667. background: #131419;
  668. color: #f8f8f2;
  669. border: 1px solid #0a0b0e;
  670. border-radius: 4px;
  671. padding: 4px;
  672. margin-right: 8px;
  673. }
  674. .profile-card-extra-links {
  675. margin-top: 8px;
  676. font-size: 14px;
  677. width: 100%;
  678. }
  679. .profile-statlist {
  680. display: flex;
  681. flex-wrap: wrap;
  682. margin: 0;
  683. padding: 0;
  684. width: 100%;
  685. justify-content: space-between;
  686. }
  687. .profile-statlist > li {
  688. display: table-cell;
  689. text-align: center;
  690. }
  691. .profile-stat-header {
  692. font-weight: bold;
  693. }
  694. .profile-stat-num {
  695. display: block;
  696. }
  697. .timeline-tweet {
  698. border-bottom: 1px solid #3e3e35;
  699. }
  700. .timeline-footer, .timeline-header {
  701. background-color: #161616;
  702. padding: 6px 0px;
  703. }
  704. .timeline-protected {
  705. text-align: center;
  706. }
  707. .timeline-protected p {
  708. margin: 8px 0px;
  709. }
  710. .timeline-none, .timeline-protected h2 {
  711. color: #ff6c60;
  712. font-size: 21px;
  713. font-weight: 600;
  714. }
  715. .timeline-end {
  716. background-color: #161616;
  717. text-align: center;
  718. font-size: 16px;
  719. color: #ff6c60;
  720. font-weight: 600;
  721. }
  722. .unavailable-box {
  723. width: 100%;
  724. height: 100%;
  725. padding: 12px;
  726. border: solid 1px #404040;
  727. border-radius: 10px;
  728. background-color: #121212;
  729. }
  730. .unavailable-quote {
  731. padding: 6px;
  732. }
  733. .quote {
  734. margin-top: 10px;
  735. border: solid 1px #404040;
  736. border-radius: 10px;
  737. background-color: #121212;
  738. overflow: auto;
  739. padding: 6px;
  740. position: relative;
  741. }
  742. .quote:hover {
  743. border-color: #808080;
  744. }
  745. .quote.unavailable:hover {
  746. border-color: #404040;
  747. }
  748. .quote-link {
  749. height: 100%;
  750. width: 100%;
  751. left: 0;
  752. top: 0;
  753. position: absolute;
  754. }
  755. .quote-text {
  756. overflow: hidden;
  757. white-space: pre-wrap;
  758. word-wrap: break-word;
  759. }
  760. .quote-media-container {
  761. display: flex;
  762. flex-direction: column;
  763. align-items: center;
  764. overflow: hidden;
  765. max-height: 102px;
  766. width: 102px;
  767. float: left;
  768. margin-right: 7px;
  769. border-radius: 7px;
  770. position: relative;
  771. }
  772. .quote-media {
  773. display: flex;
  774. justify-content: center;
  775. pointer-events: none;
  776. }
  777. .quote-media img {
  778. width: 100%;
  779. height: 100%;
  780. align-self: center;
  781. }
  782. .quote-badge {
  783. left: 0px;
  784. bottom: 0;
  785. position: absolute;
  786. z-index: 1;
  787. align-self: flex-end;
  788. }
  789. .quote-badge-text {
  790. margin: 4px;
  791. background: rgba(0, 0, 0, 0.66);
  792. border-radius: 4px;
  793. color: #fffffff0;
  794. padding: 1px 3px;
  795. font-size: 12px;
  796. font-weight: bold;
  797. }
  798. .quote-sensitive {
  799. background: #353535;
  800. width: 102px;
  801. height: 102px;
  802. border-radius: 12px;
  803. display: flex;
  804. justify-content: center;
  805. align-items: center;
  806. }
  807. .quote-sensitive-icon {
  808. font-size: 40px;
  809. color: #909090;
  810. }
  811. .card {
  812. margin: 5px 0;
  813. }
  814. .card-container {
  815. border-radius: 10px;
  816. border-width: 1px;
  817. border-style: solid;
  818. border-color: #404040;
  819. background-color: #121212;
  820. overflow: hidden;
  821. color: inherit;
  822. display: flex;
  823. text-decoration: none !important;
  824. }
  825. .card-container:hover {
  826. border-color: #808080;
  827. }
  828. .card-container .attachments {
  829. margin: 0;
  830. border-radius: 0;
  831. }
  832. .large .card-container {
  833. display: block;
  834. }
  835. .card-content {
  836. padding: 0.5em;
  837. }
  838. .card-title {
  839. overflow: hidden;
  840. text-overflow: ellipsis;
  841. font-weight: bold;
  842. font-size: 1.15em;
  843. }
  844. .card-description {
  845. margin: 0.3em 0;
  846. }
  847. .card-destination {
  848. color: hsla(240,1%,73%,.9);
  849. white-space: nowrap;
  850. overflow: hidden;
  851. text-overflow: ellipsis;
  852. display: block;
  853. }
  854. .card-content-container {
  855. color: unset;
  856. }
  857. .card-content-container:hover {
  858. text-decoration: none;
  859. }
  860. .card-image-container {
  861. width: 98px;
  862. flex-shrink: 0;
  863. position: relative;
  864. overflow: hidden;
  865. }
  866. .large .card-image-container {
  867. width: unset;
  868. }
  869. .card-image-container:before {
  870. content: "";
  871. display: block;
  872. padding-top: 100%;
  873. }
  874. .large .card-image-container:before {
  875. display: none;
  876. }
  877. .card-image {
  878. position: absolute;
  879. top: 0;
  880. left: 0;
  881. bottom: 0;
  882. right: 0;
  883. background-color: white;
  884. }
  885. .large .card-image {
  886. position: unset;
  887. border-style: solid;
  888. border-color: #404040;
  889. border-width: 0;
  890. border-bottom-width: 1px;
  891. }
  892. .card-image img {
  893. width: 100%;
  894. height: 100%;
  895. display: block;
  896. object-fit: cover;
  897. }
  898. .card-overlay {
  899. position: absolute;
  900. top: 0;
  901. left: 0;
  902. width: 100%;
  903. height: 100%;
  904. display: flex;
  905. justify-content: center;
  906. align-items: center;
  907. opacity: 0.8;
  908. }
  909. .overlay-circle {
  910. border-radius: 50%;
  911. background-color: #404040;
  912. width: 40px;
  913. height: 40px;
  914. align-items: center;
  915. display: flex;
  916. border-width: 5px;
  917. border-color: #d8574d;
  918. border-style: solid;
  919. }
  920. .overlay-triangle {
  921. width: 0;
  922. height: 0;
  923. border-style: solid;
  924. border-width: 12px 0 12px 17px;
  925. border-color: transparent transparent transparent #d8574d;
  926. margin-left: 14px;
  927. }
  928. .card-overlay:hover .overlay-circle,
  929. .video-overlay:hover .overlay-circle {
  930. border-color: #ff6c60;
  931. }
  932. .card-overlay:hover .overlay-triangle,
  933. .video-overlay:hover .overlay-triangle {
  934. border-color: transparent transparent transparent #ff6c60;
  935. }
  936. .poll-meter {
  937. overflow: hidden;
  938. position: relative;
  939. margin: 6px 0;
  940. height: 26px;
  941. background: #0f0f0f;
  942. border-radius: 5px;
  943. display: flex;
  944. align-items: center;
  945. }
  946. .poll-choice-bar {
  947. height: 100%;
  948. position: absolute;
  949. background: #383838;
  950. }
  951. .leader .poll-choice-bar {
  952. background: #8a3731;
  953. }
  954. .poll-choice-value {
  955. position: relative;
  956. font-weight: bold;
  957. margin-left: 5px;
  958. margin-right: 6px;
  959. min-width: 30px;
  960. text-align: right;
  961. }
  962. .poll-choice-option {
  963. position: relative;
  964. }
  965. .poll-info {
  966. color: #868687;
  967. }
  968. .preferences-container {
  969. max-width: 600px;
  970. margin: 0 auto;
  971. width: 100%;
  972. margin-top: 10px;
  973. }
  974. .preferences {
  975. background-color: #1f1f1f;
  976. width: 100%;
  977. padding: 5px 15px 15px 15px;
  978. }
  979. .preferences input[type="text"] {
  980. max-width: 120px;
  981. background-color: #121212;
  982. padding: 1px 4px;
  983. color: #f8f8f2;
  984. margin: 0;
  985. border: 1px solid #ff6c6091;
  986. border-radius: 0px;
  987. position: absolute;
  988. right: 0;
  989. font-size: 14px;
  990. }
  991. .preferences input[type="text"]:hover {
  992. border-color: #ff6c60;
  993. }
  994. .preferences button {
  995. margin-top: 6px;
  996. }
  997. fieldset {
  998. margin: .35em 0 .75em;
  999. border: 0;
  1000. }
  1001. legend {
  1002. width: 100%;
  1003. padding: .6em 0 .3em 0;
  1004. margin: 0;
  1005. border: 0;
  1006. font-size: 16px;
  1007. border-bottom: 1px solid #3e3e35;
  1008. margin-bottom: 8px;
  1009. }
  1010. .pref-input {
  1011. position: relative;
  1012. margin-bottom: 6px;
  1013. }
  1014. .pref-reset {
  1015. float: left;
  1016. }
  1017. .icon-container {
  1018. display: inline;
  1019. }
  1020. .checkbox-container {
  1021. display: block;
  1022. position: relative;
  1023. margin-bottom: 5px;
  1024. cursor: pointer;
  1025. user-select: none;
  1026. }
  1027. .checkbox-container input {
  1028. position: absolute;
  1029. opacity: 0;
  1030. cursor: pointer;
  1031. height: 0;
  1032. width: 0;
  1033. }
  1034. .checkbox {
  1035. position: absolute;
  1036. top: 1px;
  1037. right: 0;
  1038. height: 17px;
  1039. width: 17px;
  1040. background-color: #121212;
  1041. border: 1px solid #ff6c6091;
  1042. }
  1043. .checkbox-container:hover input ~ .checkbox {
  1044. border-color: #ff6c60;
  1045. }
  1046. .checkbox-container:active input ~ .checkbox {
  1047. border-color: #ff9f97;
  1048. }
  1049. .checkbox:after {
  1050. content: "";
  1051. position: absolute;
  1052. display: none;
  1053. }
  1054. .checkbox-container input:checked ~ .checkbox:after {
  1055. display: block;
  1056. }
  1057. .checkbox-container .checkbox:after {
  1058. left: 2px;
  1059. bottom: 0px;
  1060. font-size: 13px;
  1061. font-family: "fontello";
  1062. content: '\e803';
  1063. }