style.css 19 KB

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