style.css 17 KB

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