style.css 19 KB

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