style.css 19 KB

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