style.css 17 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075
  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. .icon {
  93. color: #fff;
  94. border-radius: 50%;
  95. display: inline-block;
  96. text-align: center;
  97. vertical-align: middle;
  98. flex-shrink: 0;
  99. margin: 2px 0 3px 3px;
  100. }
  101. .verified-icon {
  102. background-color: #1da1f2;
  103. height: 14px;
  104. width: 14px;
  105. font-size: 10px;
  106. }
  107. .protected-icon {
  108. background-color: #353535;
  109. height: 18px;
  110. width: 18px;
  111. font-size: 12px;
  112. font-weight: bold;
  113. }
  114. .tweet-date {
  115. display: flex;
  116. flex-shrink: 0;
  117. margin-left: 4px;
  118. }
  119. .replying-to {
  120. color: hsla(240,1%,73%,.9);
  121. margin: -2px 0 4px 0;
  122. }
  123. .status-el .status-content {
  124. font-family: sans-serif;
  125. line-height: 1.4em;
  126. }
  127. .status-content.media-body {
  128. flex: 1;
  129. padding: 0;
  130. white-space: pre-wrap;
  131. }
  132. .container, .item {
  133. display: flex;
  134. }
  135. .container {
  136. flex-wrap: wrap;
  137. margin: 0;
  138. }
  139. #content {
  140. box-sizing: border-box;
  141. padding-top: 50px;
  142. margin: auto;
  143. min-height: 100vh;
  144. background-color: rgba(0,0,0,.15);
  145. }
  146. nav {
  147. z-index: 1000;
  148. background-color: #1f1f1f;
  149. color: hsla(240,1%,73%,.5);
  150. box-shadow: 0 0 4px rgba(0,0,0,.6);
  151. }
  152. .nav-bar {
  153. padding: 0;
  154. width: 100%;
  155. align-items: center;
  156. position: fixed;
  157. height: 50px;
  158. }
  159. .nav-bar .inner-nav {
  160. margin: auto;
  161. box-sizing: border-box;
  162. padding-left: 10px;
  163. padding-right: 10px;
  164. display: flex;
  165. align-items: center;
  166. flex-basis: 920px;
  167. height: 50px;
  168. }
  169. .item {
  170. flex: 1;
  171. line-height: 50px;
  172. height: 50px;
  173. overflow: hidden;
  174. flex-wrap: wrap;
  175. }
  176. .item.right {
  177. text-align: right;
  178. justify-content: flex-end;
  179. }
  180. .site-logo {
  181. width: 35px;
  182. height: 35px;
  183. }
  184. .site-about {
  185. font-size: 17px;
  186. padding-right: 2px;
  187. margin-top: -0.75px;
  188. }
  189. .site-settings {
  190. font-size: 18px;
  191. }
  192. .attachments {
  193. margin-top: .35em;
  194. display: flex;
  195. flex-direction: row;
  196. width: 100%;
  197. max-height: 600px;
  198. border-radius: 7px;
  199. overflow: hidden;
  200. flex-flow: column;
  201. background-color: #0f0f0f;
  202. align-items: center;
  203. }
  204. .gallery-row {
  205. display: flex;
  206. flex-direction: row;
  207. flex-wrap: nowrap;
  208. align-items: center;
  209. overflow: hidden;
  210. flex-grow: 1;
  211. max-height: 379.5px;
  212. max-width: 533px;
  213. }
  214. .gallery-row .attachment, .gallery-row .attachments {
  215. margin: 0 .25em 0 0;
  216. flex-grow: 1;
  217. box-sizing: border-box;
  218. min-width: 2em;
  219. }
  220. .gallery-row .attachment:last-child, .gallery-row .attachments:last-child, .video-container {
  221. margin: 0;
  222. max-height: 530px;
  223. }
  224. .attachments .attachment {
  225. position: relative;
  226. line-height: 0;
  227. border-color: #222;
  228. overflow: hidden;
  229. }
  230. .gallery-row .still-image, .attachments .image-attachment {
  231. width: 100%;
  232. }
  233. .gallery-video {
  234. display: flex;
  235. overflow: hidden;
  236. }
  237. video {
  238. height: 100%;
  239. width: 100%;
  240. }
  241. .media-gif {
  242. display: inline-block;
  243. background-color: unset;
  244. }
  245. .video-overlay {
  246. width: 100%;
  247. height: 100%;
  248. position: absolute;
  249. top: 0;
  250. left: 0;
  251. z-index: 1;
  252. background-color: #000000bd;
  253. }
  254. .video-overlay p {
  255. position: relative;
  256. z-index: 0;
  257. color: #dcdcdc;
  258. text-align: center;
  259. top: calc(50% - 20px);
  260. font-size: 20px;
  261. }
  262. .still-image {
  263. max-height: 379.5px;
  264. max-width: 533px;
  265. justify-content: center;
  266. }
  267. .still-image img {
  268. object-fit: cover;
  269. max-width: 533px;
  270. max-height: 379.5px;
  271. border-color: #222;
  272. flex-basis: 300px;
  273. }
  274. .image {
  275. display: inline-block;
  276. }
  277. .single-image {
  278. display: inline-block;
  279. width: unset;
  280. }
  281. .avatar {
  282. float: left;
  283. margin-top: 3px;
  284. margin-left: -58px;
  285. position: absolute;
  286. width: 48px;
  287. height: 48px;
  288. border-radius: 50%;
  289. }
  290. .tweet-avatar {
  291. display: contents !important;
  292. }
  293. .retweet {
  294. margin-top: -5px !important;
  295. }
  296. .retweet, .pinned, .tweet-stats {
  297. align-content: center;
  298. color: hsla(240,1%,73%,.7);
  299. display: flex;
  300. flex-shrink: 0;
  301. flex-wrap: wrap;
  302. font-size: 14px;
  303. font-weight: 600;
  304. line-height: 22px;
  305. margin: 0;
  306. max-width: 85%;
  307. overflow: hidden;
  308. text-overflow: ellipsis;
  309. white-space: nowrap;
  310. }
  311. .tweet-stat {
  312. padding-top: 5px;
  313. padding-right: 8px;
  314. }
  315. .show-more {
  316. background-color: #161616;
  317. text-align: center;
  318. padding: .75em 0;
  319. display: block;
  320. }
  321. .show-more.status-el {
  322. border-bottom: 1px solid #3e3e35;
  323. }
  324. .show-more a {
  325. background-color: #242424;
  326. display: inline-block;
  327. height: 2em;
  328. padding: 0 2em;
  329. line-height: 2em;
  330. }
  331. .show-more a:hover {
  332. background-color: #282828;
  333. }
  334. .multi-header {
  335. background-color: #161616;
  336. text-align: center;
  337. padding: 10px;
  338. display: block;
  339. font-weight: bold;
  340. margin-bottom: 5px;
  341. }
  342. .multi-timeline {
  343. max-width: 600px;
  344. margin: 0 auto;
  345. }
  346. .profile-tabs {
  347. max-width: 900px;
  348. margin: 0 auto;
  349. float: none;
  350. border-radius: 0;
  351. position: relative;
  352. width: auto;
  353. }
  354. .timeline-tab {
  355. float: right;
  356. padding: 0;
  357. box-sizing: border-box;
  358. display: inline-block;
  359. font-size: 14px;
  360. margin: 0;
  361. text-align: left;
  362. vertical-align: top;
  363. }
  364. .profile-tabs > .timeline-tab {
  365. width: 68% !important;
  366. }
  367. .profile-tab {
  368. padding: 0 4px 0 0;
  369. box-sizing: border-box;
  370. display: inline-block;
  371. font-size: 14px;
  372. margin: 0;
  373. text-align: left;
  374. vertical-align: top;
  375. max-width: 32%;
  376. position: sticky;
  377. top: 50px;
  378. }
  379. .profile-banner {
  380. padding-bottom: 4px;
  381. }
  382. .profile-banner a {
  383. display: inherit;
  384. line-height: 0;
  385. }
  386. .profile-banner img {
  387. width: 100%;
  388. }
  389. .profile-banner-color {
  390. width: 100%;
  391. padding-bottom: 25%;
  392. }
  393. .profile-card {
  394. flex-wrap: wrap;
  395. background: #161616;
  396. padding: 12px;
  397. display: flex;
  398. }
  399. .profile-card-tabs-name {
  400. max-width: 100%;
  401. }
  402. .profile-card-username, .profile-card-fullname {
  403. color: #f8f8f2;
  404. }
  405. .profile-card-fullname {
  406. font-size: 16px;
  407. text-shadow: none;
  408. text-overflow: ellipsis;
  409. max-width: 100%;
  410. font-weight: bold;
  411. overflow-wrap: break-word;
  412. }
  413. .profile-card-username {
  414. font-size: 14px;
  415. overflow: hidden;
  416. text-overflow: ellipsis;
  417. display: block;
  418. }
  419. .profile-card-avatar {
  420. display: block;
  421. width: 100%;
  422. padding-bottom: 16px;
  423. margin-right: 4px;
  424. }
  425. .profile-card-avatar img {
  426. display: block;
  427. width: calc(100% - 4px);
  428. height: 100%;
  429. margin: 0;
  430. border: 4px solid #282828;
  431. background: #040404;
  432. }
  433. .profile-card-extra {
  434. display: contents;
  435. flex: 100%;
  436. margin-top: 6px;
  437. }
  438. .profile-bio {
  439. overflow: hidden;
  440. overflow-wrap: break-word;
  441. width: 100%;
  442. margin: 4px -6px 6px 0px;
  443. }
  444. .profile-bio p {
  445. margin: 0;
  446. }
  447. .profile-location, .profile-website, .profile-joindate {
  448. color: #f8f8f2cf;
  449. margin: 2px 0px;
  450. width: 100%;
  451. }
  452. .profile-description {
  453. font-size: 14px;
  454. font-weight: 400;
  455. overflow: hidden;
  456. word-break: normal;
  457. word-wrap: break-word;
  458. }
  459. .photo-rail-card {
  460. float: left;
  461. background: #161616;
  462. border-radius: 0 0 4px 4px;
  463. width: 100%;
  464. margin-top: 5px;
  465. }
  466. .photo-rail-header {
  467. padding: 5px 12px 0px 12px;
  468. }
  469. .photo-rail-grid {
  470. display: grid;
  471. grid-template-columns: repeat(4, 1fr);
  472. grid-gap: 3px 3px;
  473. padding: 5px 12px 12px 12px;
  474. }
  475. .photo-rail-grid a {
  476. position: relative;
  477. border-radius: 5px;
  478. }
  479. .photo-rail-grid a:before {
  480. content: "";
  481. display: block;
  482. padding-top: 100%;
  483. }
  484. .photo-rail-grid img {
  485. height: 100%;
  486. width: 100%;
  487. border-radius: 4px;
  488. object-fit: cover;
  489. position: absolute;
  490. top: 0;
  491. left: 0;
  492. bottom: 0;
  493. right: 0;
  494. }
  495. .tab {
  496. align-items: center;
  497. display: flex;
  498. flex-wrap: wrap;
  499. list-style: none;
  500. margin: 0 0 5px 0;
  501. background-color: #161616;
  502. padding: 0;
  503. }
  504. .tab .tab-item {
  505. margin-top: 0;
  506. }
  507. .tab-item {
  508. flex: 1 1 0;
  509. text-align: center;
  510. }
  511. .tab .tab-item a.active, .tab .tab-item.active a {
  512. border-bottom-color: #ff6c60;
  513. color: #ff6c60;
  514. }
  515. .tab .tab-item a {
  516. border-bottom: .1rem solid transparent;
  517. color: inherit;
  518. display: block;
  519. padding: 8px 0;
  520. text-decoration: none;
  521. font-weight: bold;
  522. }
  523. .conversation {
  524. max-width: 610px;
  525. margin: 0 auto;
  526. float: none;
  527. border-radius: 0;
  528. position: relative;
  529. width: 100%;
  530. background-color: #0f0f0f !important;
  531. }
  532. .main-thread {
  533. margin-bottom: 20px;
  534. background-color: #161616;
  535. }
  536. .main-tweet .status-content {
  537. font-size: 22px;
  538. line-height: 30px;
  539. letter-spacing: .01em;
  540. }
  541. .reply {
  542. background-color: #161616;
  543. margin-bottom: 10px;
  544. }
  545. .more-replies {
  546. padding-top: 0.3em;
  547. }
  548. .more-replies-text {
  549. display: block;
  550. margin-left: 58px;
  551. padding: 7px 0;
  552. text-overflow: ellipsis;
  553. white-space: nowrap;
  554. }
  555. .thread-line .status-el::before {
  556. background: #8a3731;
  557. content: '';
  558. position: relative;
  559. width: 3px;
  560. min-width: 3px;
  561. left: 26px;
  562. border-radius: 2px;
  563. margin-left: -3px;
  564. top: 56px;
  565. margin-bottom: 37px;
  566. }
  567. .thread-line .unavailable::before {
  568. top: 48px;
  569. margin-bottom: 28px;
  570. }
  571. .thread-last .status-el::before {
  572. background: unset;
  573. min-width: unset;
  574. width: 0;
  575. margin: 0;
  576. }
  577. .thread-line .more-replies::before {
  578. content: '...';
  579. background: unset;
  580. color: #ad433b;
  581. font-weight: bold;
  582. font-size: 22px;
  583. line-height: 0.25em;
  584. left: 1.2em;
  585. width: 5px;
  586. top: 2px;
  587. margin-bottom: 0px;
  588. margin-left: -5px;
  589. }
  590. .panel {
  591. margin: auto;
  592. font-size: 130%;
  593. }
  594. .error-panel {
  595. background-color: #420a05 !important;
  596. }
  597. .error-panel, .search-panel > form {
  598. padding: 12px;
  599. border-radius: 4px;
  600. display: flex;
  601. background: #222222;
  602. box-shadow: 0 0 15px rgba(0,0,0,.2);
  603. margin: auto;
  604. margin-top: -50px;
  605. }
  606. .search-panel > form > button {
  607. font-size: 14px;
  608. line-height: 24px;
  609. display: block;
  610. border: 0;
  611. border-radius: 4px;
  612. background: #2f2f2f;
  613. color: #f8f8f2;
  614. outline: 0;
  615. text-decoration: none;
  616. text-align: center;
  617. box-sizing: border-box;
  618. cursor: pointer;
  619. font-weight: bold;
  620. width: 37px;
  621. height: 32px;
  622. padding: 0;
  623. }
  624. .search-panel > form > input {
  625. box-sizing: border-box;
  626. font-size: 16px;
  627. display: block;
  628. width: 100%;
  629. outline: 0;
  630. font-family: inherit;
  631. background: #131419;
  632. color: #f8f8f2;
  633. border: 1px solid #0a0b0e;
  634. border-radius: 4px;
  635. padding: 4px;
  636. margin-right: 8px;
  637. }
  638. .profile-card-extra-links {
  639. margin-top: 8px;
  640. font-size: 14px;
  641. width: 100%;
  642. }
  643. .profile-statlist {
  644. display: flex;
  645. flex-wrap: wrap;
  646. margin: 0;
  647. padding: 0;
  648. width: 100%;
  649. justify-content: space-between;
  650. }
  651. .profile-statlist > li {
  652. display: table-cell;
  653. text-align: center;
  654. }
  655. .profile-stat-header {
  656. font-weight: bold;
  657. }
  658. .profile-stat-num {
  659. display: block;
  660. }
  661. .timeline-tweet {
  662. border-bottom: 1px solid #3e3e35;
  663. }
  664. .timeline-footer, .timeline-header {
  665. background-color: #161616;
  666. padding: 6px 0px;
  667. }
  668. .timeline-protected {
  669. text-align: center;
  670. }
  671. .timeline-protected p {
  672. margin: 8px 0px;
  673. }
  674. .timeline-none, .timeline-protected h2 {
  675. color: #ff6c60;
  676. font-size: 21px;
  677. font-weight: 600;
  678. }
  679. .timeline-end {
  680. background-color: #161616;
  681. text-align: center;
  682. font-size: 16px;
  683. color: #ff6c60;
  684. font-weight: 600;
  685. }
  686. .unavailable-box {
  687. width: 100%;
  688. height: 100%;
  689. padding: 12px;
  690. border: solid 1px #404040;
  691. border-radius: 10px;
  692. background-color: #121212;
  693. }
  694. .unavailable-quote {
  695. padding: 6px;
  696. }
  697. .quote {
  698. margin-top: 10px;
  699. border: solid 1px #404040;
  700. border-radius: 10px;
  701. background-color: #121212;
  702. overflow: auto;
  703. padding: 6px;
  704. position: relative;
  705. }
  706. .quote:hover {
  707. border-color: #808080;
  708. }
  709. .quote.unavailable:hover {
  710. border-color: #404040;
  711. }
  712. .quote-link {
  713. height: 100%;
  714. width: 100%;
  715. left: 0;
  716. top: 0;
  717. position: absolute;
  718. }
  719. .quote-text {
  720. overflow: hidden;
  721. white-space: pre-wrap;
  722. word-wrap: break-word;
  723. }
  724. .quote-media-container {
  725. display: flex;
  726. flex-direction: column;
  727. align-items: center;
  728. overflow: hidden;
  729. max-height: 102px;
  730. width: 102px;
  731. float: left;
  732. margin-right: 7px;
  733. border-radius: 7px;
  734. }
  735. .quote-media {
  736. display: flex;
  737. justify-content: center;
  738. pointer-events: none;
  739. }
  740. .quote-media img {
  741. width: 100%;
  742. height: 100%;
  743. align-self: center;
  744. }
  745. .quote-badge {
  746. left: 6px;
  747. position: absolute;
  748. z-index: 1;
  749. align-self: flex-end;
  750. }
  751. .quote-badge-text {
  752. margin: 4px;
  753. background: rgba(0, 0, 0, 0.66);
  754. border-radius: 4px;
  755. color: #fffffff0;
  756. padding: 1px 3px;
  757. font-size: 12px;
  758. font-weight: bold;
  759. }
  760. .quote-sensitive {
  761. background: #353535;
  762. width: 102px;
  763. height: 102px;
  764. border-radius: 12px;
  765. display: flex;
  766. justify-content: center;
  767. align-items: center;
  768. }
  769. .quote-sensitive-icon {
  770. font-size: 25px;
  771. width: 37px;
  772. height: 32px;
  773. background-color: #4e4e4e;
  774. padding-bottom: 5px;
  775. margin: 0;
  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. }