style.css 19 KB

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