style.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224
  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. .card-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. .card-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. .poll-meter {
  903. overflow: hidden;
  904. position: relative;
  905. margin: 6px 0;
  906. height: 26px;
  907. background: #0f0f0f;
  908. border-radius: 5px;
  909. display: flex;
  910. align-items: center;
  911. }
  912. .poll-choice-bar {
  913. height: 100%;
  914. position: absolute;
  915. background: #383838;
  916. }
  917. .leader .poll-choice-bar {
  918. background: #8a3731;
  919. }
  920. .poll-choice-value {
  921. position: relative;
  922. font-weight: bold;
  923. margin-left: 5px;
  924. margin-right: 6px;
  925. min-width: 30px;
  926. text-align: right;
  927. }
  928. .poll-choice-option {
  929. position: relative;
  930. }
  931. .poll-info {
  932. color: #868687;
  933. }
  934. .preferences-container {
  935. max-width: 600px;
  936. margin: 0 auto;
  937. width: 100%;
  938. margin-top: 10px;
  939. }
  940. .preferences {
  941. background-color: #1f1f1f;
  942. width: 100%;
  943. padding: 5px 15px 15px 15px;
  944. }
  945. .preferences input[type="text"] {
  946. max-width: 120px;
  947. background-color: #121212;
  948. padding: 1px 4px;
  949. color: #f8f8f2;
  950. margin: 0;
  951. border: 1px solid #ff6c6091;
  952. border-radius: 0px;
  953. position: absolute;
  954. right: 0;
  955. font-size: 14px;
  956. }
  957. .preferences input[type="text"]:hover {
  958. border-color: #ff6c60;
  959. }
  960. fieldset {
  961. margin: .35em 0 .75em;
  962. border: 0;
  963. }
  964. legend {
  965. width: 100%;
  966. padding: .6em 0 .3em 0;
  967. margin: 0;
  968. border: 0;
  969. font-size: 16px;
  970. border-bottom: 1px solid #3e3e35;
  971. margin-bottom: 8px;
  972. }
  973. .pref-input {
  974. position: relative;
  975. margin-bottom: 6px;
  976. }
  977. .pref-submit, .pref-reset button {
  978. background-color: #121212;
  979. color: #f8f8f2;
  980. border: 1px solid #ff6c6091;
  981. padding: 3px 6px;
  982. margin-top: 6px;
  983. font-size: 14px;
  984. cursor: pointer;
  985. float: right;
  986. }
  987. .pref-submit:hover, .pref-reset button:hover {
  988. border-color: #ff6c60;
  989. }
  990. .pref-submit:active, .pref-reset button:active {
  991. border-color: #ff9f97;
  992. }
  993. .pref-reset {
  994. float: left;
  995. }
  996. .icon-container {
  997. display: inline;
  998. }
  999. .checkbox-container {
  1000. display: block;
  1001. position: relative;
  1002. margin-bottom: 5px;
  1003. cursor: pointer;
  1004. user-select: none;
  1005. }
  1006. .checkbox-container input {
  1007. position: absolute;
  1008. opacity: 0;
  1009. cursor: pointer;
  1010. height: 0;
  1011. width: 0;
  1012. }
  1013. .checkbox {
  1014. position: absolute;
  1015. top: 1px;
  1016. right: 0;
  1017. height: 17px;
  1018. width: 17px;
  1019. background-color: #121212;
  1020. border: 1px solid #ff6c6091;
  1021. }
  1022. .checkbox-container:hover input ~ .checkbox {
  1023. border-color: #ff6c60;
  1024. }
  1025. .checkbox-container:active input ~ .checkbox {
  1026. border-color: #ff9f97;
  1027. }
  1028. .checkbox:after {
  1029. content: "";
  1030. position: absolute;
  1031. display: none;
  1032. }
  1033. .checkbox-container input:checked ~ .checkbox:after {
  1034. display: block;
  1035. }
  1036. .checkbox-container .checkbox:after {
  1037. left: 2px;
  1038. bottom: 0px;
  1039. font-size: 13px;
  1040. font-family: "fontello";
  1041. content: '\e803';
  1042. }