style.css 19 KB

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