style.css 17 KB

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