style.css 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121
  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, .video-container img {
  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. .show-thread {
  335. display: block;
  336. }
  337. .multi-header {
  338. background-color: #161616;
  339. text-align: center;
  340. padding: 10px;
  341. display: block;
  342. font-weight: bold;
  343. margin-bottom: 5px;
  344. }
  345. .multi-timeline {
  346. max-width: 600px;
  347. margin: 0 auto;
  348. }
  349. .profile-tabs {
  350. max-width: 900px;
  351. margin: 0 auto;
  352. float: none;
  353. border-radius: 0;
  354. position: relative;
  355. width: auto;
  356. }
  357. .timeline-tab {
  358. float: right;
  359. padding: 0;
  360. box-sizing: border-box;
  361. display: inline-block;
  362. font-size: 14px;
  363. margin: 0;
  364. text-align: left;
  365. vertical-align: top;
  366. }
  367. .profile-tabs > .timeline-tab {
  368. width: 68% !important;
  369. }
  370. .profile-tab {
  371. padding: 0 4px 0 0;
  372. box-sizing: border-box;
  373. display: inline-block;
  374. font-size: 14px;
  375. margin: 0;
  376. text-align: left;
  377. vertical-align: top;
  378. max-width: 32%;
  379. top: 50px;
  380. }
  381. .profile-banner {
  382. padding-bottom: 4px;
  383. }
  384. .profile-banner a {
  385. display: inherit;
  386. line-height: 0;
  387. }
  388. .profile-banner img {
  389. width: 100%;
  390. }
  391. .profile-banner-color {
  392. width: 100%;
  393. padding-bottom: 25%;
  394. }
  395. .profile-card {
  396. flex-wrap: wrap;
  397. background: #161616;
  398. padding: 12px;
  399. display: flex;
  400. }
  401. .profile-card-tabs-name {
  402. max-width: 100%;
  403. }
  404. .profile-card-username, .profile-card-fullname {
  405. color: #f8f8f2;
  406. }
  407. .profile-card-fullname {
  408. font-size: 16px;
  409. text-shadow: none;
  410. text-overflow: ellipsis;
  411. max-width: 100%;
  412. font-weight: bold;
  413. overflow-wrap: break-word;
  414. }
  415. .profile-card-username {
  416. font-size: 14px;
  417. overflow: hidden;
  418. text-overflow: ellipsis;
  419. display: block;
  420. }
  421. .profile-card-avatar {
  422. display: block;
  423. width: 100%;
  424. padding-bottom: 16px;
  425. margin-right: 4px;
  426. }
  427. .profile-card-avatar img {
  428. display: block;
  429. width: calc(100% - 4px);
  430. height: 100%;
  431. margin: 0;
  432. border: 4px solid #282828;
  433. background: #040404;
  434. }
  435. .profile-card-extra {
  436. display: contents;
  437. flex: 100%;
  438. margin-top: 6px;
  439. }
  440. .profile-bio {
  441. overflow: hidden;
  442. overflow-wrap: break-word;
  443. width: 100%;
  444. margin: 4px -6px 6px 0px;
  445. }
  446. .profile-bio p {
  447. margin: 0;
  448. }
  449. .profile-location, .profile-website, .profile-joindate {
  450. color: #f8f8f2cf;
  451. margin: 2px 0px;
  452. width: 100%;
  453. }
  454. .profile-description {
  455. font-size: 14px;
  456. font-weight: 400;
  457. overflow: hidden;
  458. word-break: normal;
  459. word-wrap: break-word;
  460. }
  461. .photo-rail-card {
  462. float: left;
  463. background: #161616;
  464. border-radius: 0 0 4px 4px;
  465. width: 100%;
  466. margin-top: 5px;
  467. }
  468. .photo-rail-header {
  469. padding: 5px 12px 0px 12px;
  470. }
  471. .photo-rail-grid {
  472. display: grid;
  473. grid-template-columns: repeat(4, 1fr);
  474. grid-gap: 3px 3px;
  475. padding: 5px 12px 12px 12px;
  476. }
  477. .photo-rail-grid a {
  478. position: relative;
  479. border-radius: 5px;
  480. }
  481. .photo-rail-grid a:before {
  482. content: "";
  483. display: block;
  484. padding-top: 100%;
  485. }
  486. .photo-rail-grid img {
  487. height: 100%;
  488. width: 100%;
  489. border-radius: 4px;
  490. object-fit: cover;
  491. position: absolute;
  492. top: 0;
  493. left: 0;
  494. bottom: 0;
  495. right: 0;
  496. }
  497. .tab {
  498. align-items: center;
  499. display: flex;
  500. flex-wrap: wrap;
  501. list-style: none;
  502. margin: 0 0 5px 0;
  503. background-color: #161616;
  504. padding: 0;
  505. }
  506. .tab .tab-item {
  507. margin-top: 0;
  508. }
  509. .tab-item {
  510. flex: 1 1 0;
  511. text-align: center;
  512. }
  513. .tab .tab-item a.active, .tab .tab-item.active a {
  514. border-bottom-color: #ff6c60;
  515. color: #ff6c60;
  516. }
  517. .tab .tab-item a {
  518. border-bottom: .1rem solid transparent;
  519. color: inherit;
  520. display: block;
  521. padding: 8px 0;
  522. text-decoration: none;
  523. font-weight: bold;
  524. }
  525. .conversation {
  526. max-width: 610px;
  527. margin: 0 auto;
  528. float: none;
  529. border-radius: 0;
  530. position: relative;
  531. width: 100%;
  532. background-color: #0f0f0f !important;
  533. }
  534. .main-thread {
  535. margin-bottom: 20px;
  536. background-color: #161616;
  537. }
  538. .main-tweet .status-content {
  539. font-size: 22px;
  540. line-height: 30px;
  541. letter-spacing: .01em;
  542. }
  543. .reply {
  544. background-color: #161616;
  545. margin-bottom: 10px;
  546. }
  547. .more-replies {
  548. padding-top: 0.3em;
  549. }
  550. .more-replies-text {
  551. display: block;
  552. margin-left: 58px;
  553. padding: 7px 0;
  554. text-overflow: ellipsis;
  555. white-space: nowrap;
  556. }
  557. .thread-line .status-el::before {
  558. background: #8a3731;
  559. content: '';
  560. position: relative;
  561. width: 3px;
  562. min-width: 3px;
  563. left: 26px;
  564. border-radius: 2px;
  565. margin-left: -3px;
  566. top: 56px;
  567. margin-bottom: 37px;
  568. }
  569. .thread-line .unavailable::before {
  570. top: 48px;
  571. margin-bottom: 28px;
  572. }
  573. .thread-last .status-el::before {
  574. background: unset;
  575. min-width: unset;
  576. width: 0;
  577. margin: 0;
  578. }
  579. .thread-line .more-replies::before {
  580. content: '...';
  581. background: unset;
  582. color: #ad433b;
  583. font-weight: bold;
  584. font-size: 22px;
  585. line-height: 0.25em;
  586. left: 1.2em;
  587. width: 5px;
  588. top: 2px;
  589. margin-bottom: 0px;
  590. margin-left: -5px;
  591. }
  592. .panel {
  593. margin: auto;
  594. font-size: 130%;
  595. }
  596. .error-panel {
  597. background-color: #420a05 !important;
  598. }
  599. .error-panel, .search-panel > form {
  600. padding: 12px;
  601. border-radius: 4px;
  602. display: flex;
  603. background: #222222;
  604. box-shadow: 0 0 15px rgba(0,0,0,.2);
  605. margin: auto;
  606. margin-top: -50px;
  607. }
  608. .search-panel > form > button {
  609. font-size: 14px;
  610. line-height: 24px;
  611. display: block;
  612. border: 0;
  613. border-radius: 4px;
  614. background: #2f2f2f;
  615. color: #f8f8f2;
  616. outline: 0;
  617. text-decoration: none;
  618. text-align: center;
  619. box-sizing: border-box;
  620. cursor: pointer;
  621. font-weight: bold;
  622. width: 37px;
  623. height: 32px;
  624. padding: 0;
  625. }
  626. .search-panel > form > input {
  627. box-sizing: border-box;
  628. font-size: 16px;
  629. display: block;
  630. width: 100%;
  631. outline: 0;
  632. font-family: inherit;
  633. background: #131419;
  634. color: #f8f8f2;
  635. border: 1px solid #0a0b0e;
  636. border-radius: 4px;
  637. padding: 4px;
  638. margin-right: 8px;
  639. }
  640. .profile-card-extra-links {
  641. margin-top: 8px;
  642. font-size: 14px;
  643. width: 100%;
  644. }
  645. .profile-statlist {
  646. display: flex;
  647. flex-wrap: wrap;
  648. margin: 0;
  649. padding: 0;
  650. width: 100%;
  651. justify-content: space-between;
  652. }
  653. .profile-statlist > li {
  654. display: table-cell;
  655. text-align: center;
  656. }
  657. .profile-stat-header {
  658. font-weight: bold;
  659. }
  660. .profile-stat-num {
  661. display: block;
  662. }
  663. .timeline-tweet {
  664. border-bottom: 1px solid #3e3e35;
  665. }
  666. .timeline-footer, .timeline-header {
  667. background-color: #161616;
  668. padding: 6px 0px;
  669. }
  670. .timeline-protected {
  671. text-align: center;
  672. }
  673. .timeline-protected p {
  674. margin: 8px 0px;
  675. }
  676. .timeline-none, .timeline-protected h2 {
  677. color: #ff6c60;
  678. font-size: 21px;
  679. font-weight: 600;
  680. }
  681. .timeline-end {
  682. background-color: #161616;
  683. text-align: center;
  684. font-size: 16px;
  685. color: #ff6c60;
  686. font-weight: 600;
  687. }
  688. .unavailable-box {
  689. width: 100%;
  690. height: 100%;
  691. padding: 12px;
  692. border: solid 1px #404040;
  693. border-radius: 10px;
  694. background-color: #121212;
  695. }
  696. .unavailable-quote {
  697. padding: 6px;
  698. }
  699. .quote {
  700. margin-top: 10px;
  701. border: solid 1px #404040;
  702. border-radius: 10px;
  703. background-color: #121212;
  704. overflow: auto;
  705. padding: 6px;
  706. position: relative;
  707. }
  708. .quote:hover {
  709. border-color: #808080;
  710. }
  711. .quote.unavailable:hover {
  712. border-color: #404040;
  713. }
  714. .quote-link {
  715. height: 100%;
  716. width: 100%;
  717. left: 0;
  718. top: 0;
  719. position: absolute;
  720. }
  721. .quote-text {
  722. overflow: hidden;
  723. white-space: pre-wrap;
  724. word-wrap: break-word;
  725. }
  726. .quote-media-container {
  727. display: flex;
  728. flex-direction: column;
  729. align-items: center;
  730. overflow: hidden;
  731. max-height: 102px;
  732. width: 102px;
  733. float: left;
  734. margin-right: 7px;
  735. border-radius: 7px;
  736. }
  737. .quote-media {
  738. display: flex;
  739. justify-content: center;
  740. pointer-events: none;
  741. }
  742. .quote-media img {
  743. width: 100%;
  744. height: 100%;
  745. align-self: center;
  746. }
  747. .quote-badge {
  748. left: 6px;
  749. position: absolute;
  750. z-index: 1;
  751. align-self: flex-end;
  752. }
  753. .quote-badge-text {
  754. margin: 4px;
  755. background: rgba(0, 0, 0, 0.66);
  756. border-radius: 4px;
  757. color: #fffffff0;
  758. padding: 1px 3px;
  759. font-size: 12px;
  760. font-weight: bold;
  761. }
  762. .quote-sensitive {
  763. background: #353535;
  764. width: 102px;
  765. height: 102px;
  766. border-radius: 12px;
  767. display: flex;
  768. justify-content: center;
  769. align-items: center;
  770. }
  771. .quote-sensitive-icon {
  772. font-size: 25px;
  773. width: 37px;
  774. height: 32px;
  775. background-color: #4e4e4e;
  776. padding-bottom: 5px;
  777. margin: 0;
  778. }
  779. .card {
  780. margin: 5px 0;
  781. }
  782. .card-container {
  783. border-radius: 10px;
  784. border-width: 1px;
  785. border-style: solid;
  786. border-color: #404040;
  787. background-color: #121212;
  788. overflow: hidden;
  789. color: inherit;
  790. display: flex;
  791. text-decoration: none !important;
  792. }
  793. .card-container:hover {
  794. border-color: #808080;
  795. }
  796. .card-container .attachments {
  797. margin: 0;
  798. border-radius: 0;
  799. }
  800. .large .card-container {
  801. display: block;
  802. }
  803. .card-content {
  804. padding: 0.5em;
  805. }
  806. .card-title {
  807. overflow: hidden;
  808. text-overflow: ellipsis;
  809. font-weight: bold;
  810. font-size: 1.15em;
  811. }
  812. .card-description {
  813. margin: 0.3em 0;
  814. }
  815. .card-destination {
  816. color: hsla(240,1%,73%,.9);
  817. white-space: nowrap;
  818. overflow: hidden;
  819. text-overflow: ellipsis;
  820. display: block;
  821. }
  822. .card-image-container {
  823. width: 98px;
  824. flex-shrink: 0;
  825. position: relative;
  826. overflow: hidden;
  827. }
  828. .large .card-image-container {
  829. width: unset;
  830. }
  831. .card-image-container:before {
  832. content: "";
  833. display: block;
  834. padding-top: 100%;
  835. }
  836. .large .card-image-container:before {
  837. display: none;
  838. }
  839. .card-image {
  840. position: absolute;
  841. top: 0;
  842. left: 0;
  843. bottom: 0;
  844. right: 0;
  845. background-color: white;
  846. }
  847. .large .card-image {
  848. position: unset;
  849. border-style: solid;
  850. border-color: #404040;
  851. border-width: 0;
  852. border-bottom-width: 1px;
  853. }
  854. .card-image img {
  855. width: 100%;
  856. height: 100%;
  857. display: block;
  858. object-fit: cover;
  859. }
  860. .card-overlay {
  861. position: absolute;
  862. top: 0;
  863. left: 0;
  864. width: 100%;
  865. height: 100%;
  866. display: flex;
  867. justify-content: center;
  868. align-items: center;
  869. opacity: 0.8;
  870. }
  871. .card-overlay-circle {
  872. border-radius: 50%;
  873. background-color: #404040;
  874. width: 40px;
  875. height: 40px;
  876. align-items: center;
  877. display: flex;
  878. border-width: 5px;
  879. border-color: #d8574d;
  880. border-style: solid;
  881. }
  882. .card-overlay-triangle {
  883. width: 0;
  884. height: 0;
  885. border-style: solid;
  886. border-width: 12px 0 12px 17px;
  887. border-color: transparent transparent transparent #d8574d;
  888. margin-left: 14px;
  889. }
  890. .poll-meter {
  891. overflow: hidden;
  892. position: relative;
  893. margin: 6px 0;
  894. height: 26px;
  895. background: #0f0f0f;
  896. border-radius: 5px;
  897. display: flex;
  898. align-items: center;
  899. }
  900. .poll-choice-bar {
  901. height: 100%;
  902. position: absolute;
  903. background: #383838;
  904. }
  905. .leader .poll-choice-bar {
  906. background: #8a3731;
  907. }
  908. .poll-choice-value {
  909. position: relative;
  910. font-weight: bold;
  911. margin-left: 5px;
  912. margin-right: 6px;
  913. min-width: 30px;
  914. text-align: right;
  915. }
  916. .poll-choice-option {
  917. position: relative;
  918. }
  919. .poll-info {
  920. color: #868687;
  921. }
  922. .preferences-container {
  923. max-width: 600px;
  924. margin: 0 auto;
  925. width: 100%;
  926. }
  927. .preferences {
  928. background-color: #222222;
  929. }
  930. fieldset {
  931. margin: .35em 0 .75em;
  932. border: 0;
  933. }
  934. legend {
  935. width: 100%;
  936. padding: .6em 0 .3em 0;
  937. margin-bottom: .2em;
  938. border: 0;
  939. border-bottom: 1px solid #888888;
  940. font-size: 16px;
  941. }
  942. .pref-group {
  943. margin: .2em; 0;
  944. }
  945. .pref-submit:hover {
  946. background-color: #a8a8a8;
  947. }
  948. .pref-submit {
  949. background-color: #e2e2e2;
  950. color: #000;
  951. border: none;
  952. border-radius: 2px;
  953. padding: 3px 6px;
  954. margin-left: 6px;
  955. margin-top: 4px;
  956. }