style.css 20 KB

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