style.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907
  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. #tweets {
  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. .media-heading {
  55. padding: 0;
  56. vertical-align: bottom;
  57. flex-basis: 100%;
  58. margin-bottom: .2em;
  59. }
  60. .media-heading a {
  61. display: inline-block;
  62. word-break: break-all;
  63. max-width: 100%;
  64. }
  65. .heading-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. .heading-right {
  115. display: flex;
  116. flex-shrink: 0;
  117. margin-left: 4px;
  118. }
  119. .replying-to {
  120. color: hsla(240,1%,73%,.7);
  121. margin: 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: 500px;
  206. }
  207. .attachments .attachment {
  208. position: relative;
  209. line-height: 0;
  210. border-color: #222;
  211. overflow: hidden;
  212. }
  213. .gallery-row .image-attachment, .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, .pinned, .tweet-stats {
  277. align-content: center;
  278. color: hsla(240,1%,73%,.7);
  279. display: flex;
  280. flex-shrink: 0;
  281. flex-wrap: wrap;
  282. font-size: 14px;
  283. font-weight: 600;
  284. line-height: 22px;
  285. margin: 0;
  286. max-width: 85%;
  287. overflow: hidden;
  288. text-overflow: ellipsis;
  289. white-space: nowrap;
  290. }
  291. .tweet-stat {
  292. padding-top: 5px;
  293. padding-right: 8px;
  294. }
  295. .show-more {
  296. text-align: center;
  297. padding: .75em 0;
  298. display: block;
  299. }
  300. .show-more.status-el {
  301. border-bottom: 1px solid #3e3e35;
  302. }
  303. .show-more a {
  304. background-color: #242424;
  305. display: inline-block;
  306. height: 2em;
  307. padding: 0 2em;
  308. line-height: 2em;
  309. }
  310. .show-more a:hover {
  311. background-color: #282828;
  312. }
  313. .profile-tabs {
  314. max-width: 900px;
  315. margin: 0 auto;
  316. float: none;
  317. border-radius: 0;
  318. position: relative;
  319. width: auto;
  320. }
  321. .timeline-tab {
  322. float: right;
  323. padding: 0;
  324. box-sizing: border-box;
  325. display: inline-block;
  326. font-size: 14px;
  327. margin: 0;
  328. text-align: left;
  329. vertical-align: top;
  330. width: 68% !important;
  331. }
  332. .profile-tab {
  333. padding: 0 4px 0 0;
  334. box-sizing: border-box;
  335. display: inline-block;
  336. font-size: 14px;
  337. margin: 0;
  338. text-align: left;
  339. vertical-align: top;
  340. max-width: 32%;
  341. position: sticky;
  342. top: 50px;
  343. }
  344. .profile-banner {
  345. padding-bottom: 4px;
  346. }
  347. .profile-banner a {
  348. display: inherit;
  349. line-height: 0;
  350. }
  351. .profile-banner img {
  352. width: 100%;
  353. }
  354. .profile-banner-color {
  355. width: 100%;
  356. padding-bottom: 25%;
  357. margin-bottom: 8px;
  358. }
  359. .profile-card {
  360. flex-wrap: wrap;
  361. background: #161616;
  362. padding: 12px;
  363. display: flex;
  364. }
  365. .profile-card-tabs {
  366. display: flex;
  367. justify-content: space-between;
  368. align-items: center;
  369. flex: 1 1 auto;
  370. max-width: 100%;
  371. }
  372. .profile-card-tabs-name {
  373. max-width: 100%;
  374. }
  375. .profile-card-username, .profile-card-fullname {
  376. color: #f8f8f2;
  377. }
  378. .profile-card-fullname {
  379. font-size: 16px;
  380. text-shadow: none;
  381. text-overflow: ellipsis;
  382. max-width: 100%;
  383. font-weight: bold;
  384. }
  385. .profile-card-username {
  386. font-size: 14px;
  387. overflow: hidden;
  388. text-overflow: ellipsis;
  389. display: block;
  390. }
  391. .profile-card-avatar {
  392. display: block;
  393. width: 100%;
  394. padding-bottom: 16px;
  395. margin-right: 4px;
  396. }
  397. .profile-card-avatar img {
  398. display: block;
  399. width: calc(100% - 4px);
  400. height: 100%;
  401. margin: 0;
  402. border: 4px solid #282828;
  403. background: #040404;
  404. }
  405. .profile-card-extra {
  406. display: contents;
  407. flex: 100%;
  408. margin-top: 4px;
  409. }
  410. .profile-bio {
  411. overflow: hidden;
  412. overflow-wrap: break-word;
  413. width: 100%;
  414. margin: 10px -6px 0px 0px;
  415. }
  416. .profile-bio p {
  417. margin: 0;
  418. }
  419. .profile-description {
  420. font-size: 14px;
  421. font-weight: 400;
  422. overflow: hidden;
  423. word-break: normal;
  424. word-wrap: break-word;
  425. }
  426. .photo-rail-card {
  427. float: left;
  428. background: #161616;
  429. border-radius: 0 0 4px 4px;
  430. width: 100%;
  431. margin-top: 5px;
  432. }
  433. .photo-rail-heading {
  434. padding: 5px 12px 0px 12px;
  435. }
  436. .photo-rail-grid {
  437. display: grid;
  438. grid-template-columns: repeat(4, 1fr);
  439. grid-gap: 3px 3px;
  440. padding: 5px 12px 12px 12px;
  441. }
  442. .photo-rail-grid a {
  443. position: relative;
  444. border-radius: 5px;
  445. }
  446. .photo-rail-grid a:before {
  447. content: "";
  448. display: block;
  449. padding-top: 100%;
  450. }
  451. .photo-rail-grid img {
  452. height: 100%;
  453. width: 100%;
  454. border-radius: 4px;
  455. object-fit: cover;
  456. position: absolute;
  457. top: 0;
  458. left: 0;
  459. bottom: 0;
  460. right: 0;
  461. }
  462. .tab {
  463. align-items: center;
  464. display: flex;
  465. flex-wrap: wrap;
  466. list-style: none;
  467. margin: 0 0 5px 0;
  468. background-color: #161616;
  469. padding: 0;
  470. }
  471. .tab .tab-item {
  472. margin-top: 0;
  473. }
  474. .tab-item {
  475. flex: 1 1 0;
  476. text-align: center;
  477. }
  478. .tab .tab-item a.active, .tab .tab-item.active a {
  479. border-bottom-color: #ff6c60;
  480. color: #ff6c60;
  481. }
  482. .tab .tab-item a {
  483. border-bottom: .1rem solid transparent;
  484. color: inherit;
  485. display: block;
  486. padding: 8px 0;
  487. text-decoration: none;
  488. font-weight: bold;
  489. }
  490. .conversation {
  491. max-width: 610px;
  492. margin: 0 auto;
  493. float: none;
  494. border-radius: 0;
  495. position: relative;
  496. width: auto;
  497. background-color: #0f0f0f !important;
  498. }
  499. .main-thread {
  500. margin-bottom: 20px;
  501. background-color: #161616;
  502. }
  503. .main-tweet .status-content {
  504. font-size: 22px;
  505. line-height: 30px;
  506. letter-spacing: .01em;
  507. }
  508. .reply {
  509. background-color: #161616;
  510. margin-bottom: 10px;
  511. }
  512. .more-replies {
  513. padding-top: 0.3em;
  514. }
  515. .more-replies-text {
  516. display: block;
  517. margin-left: 58px;
  518. padding: 7px 0;
  519. text-overflow: ellipsis;
  520. white-space: nowrap;
  521. }
  522. .thread-line .status-el::before {
  523. background: #8a3731;
  524. content: '';
  525. position: relative;
  526. width: 3px;
  527. min-width: 3px;
  528. left: 26px;
  529. border-radius: 2px;
  530. margin-left: -3px;
  531. top: 56px;
  532. margin-bottom: 37px;
  533. }
  534. .thread-line .unavailable::before {
  535. top: 40px;
  536. margin-bottom: 19px;
  537. }
  538. .thread-last .status-el::before {
  539. background: unset;
  540. min-width: unset;
  541. width: 0;
  542. margin: 0;
  543. }
  544. .thread-line .more-replies::before {
  545. content: '...';
  546. background: unset;
  547. color: #b94e46;
  548. font-weight: bold;
  549. font-size: 22px;
  550. line-height: 0.25em;
  551. left: 1.2em;
  552. width: 5px;
  553. top: 2px;
  554. margin-bottom: 0px;
  555. margin-left: -5px;
  556. }
  557. .panel {
  558. margin: auto;
  559. font-size: 130%;
  560. }
  561. .error-panel {
  562. background-color: #420a05 !important;
  563. }
  564. .error-panel, .search-panel > form {
  565. padding: 12px;
  566. border-radius: 4px;
  567. display: flex;
  568. background: #222222;
  569. box-shadow: 0 0 15px rgba(0,0,0,.2);
  570. margin: auto;
  571. margin-top: -50px;
  572. }
  573. .search-panel > form > button {
  574. font-size: 14px;
  575. line-height: 24px;
  576. display: block;
  577. border: 0;
  578. border-radius: 4px;
  579. background: #2f2f2f;
  580. color: #f8f8f2;
  581. outline: 0;
  582. text-decoration: none;
  583. text-align: center;
  584. box-sizing: border-box;
  585. cursor: pointer;
  586. font-weight: bold;
  587. width: 37px;
  588. height: 32px;
  589. padding: 0;
  590. }
  591. .search-panel > form > input {
  592. box-sizing: border-box;
  593. font-size: 16px;
  594. display: block;
  595. width: 100%;
  596. outline: 0;
  597. font-family: inherit;
  598. background: #131419;
  599. color: #f8f8f2;
  600. border: 1px solid #0a0b0e;
  601. border-radius: 4px;
  602. padding: 4px;
  603. margin-right: 8px;
  604. }
  605. .profile-card-extra-links {
  606. margin-top: 8px;
  607. font-size: 14px;
  608. width: 100%;
  609. }
  610. .profile-statlist {
  611. display: flex;
  612. flex-wrap: wrap;
  613. margin: 0;
  614. padding: 0;
  615. width: 100%;
  616. }
  617. .profile-statlist > li {
  618. display: table-cell;
  619. text-align: center;
  620. }
  621. .profile-statlist .tweets {
  622. flex: 0.4 1 0;
  623. }
  624. .profile-statlist .followers {
  625. flex: 1 1 0;
  626. padding: 0 3px;
  627. }
  628. .profile-statlist .following {
  629. flex: 0.5 1 0;
  630. }
  631. .profile-stat-header {
  632. font-weight: bold;
  633. }
  634. .profile-stat-num {
  635. display: block;
  636. }
  637. .timeline-tweet {
  638. border-bottom: 1px solid #3e3e35;
  639. }
  640. .timeline-footer, .timeline-header {
  641. max-width: 550px;
  642. margin: 0 auto;
  643. padding: 6px 0px;
  644. }
  645. .timeline-none, .timeline-protected {
  646. color: #ff6c60;
  647. font-size: 21px;
  648. font-weight: 600;
  649. }
  650. .timeline-end {
  651. text-align: center;
  652. font-size: 16px;
  653. color: #ff6c60;
  654. font-weight: 600;
  655. }
  656. .unavailable-box {
  657. width: 100%;
  658. height: 100%;
  659. padding: 8px;
  660. border: solid 1px #404040;
  661. border-radius: 10px;
  662. background-color: #121212;
  663. }
  664. .unavailable-quote {
  665. padding: 8px;
  666. }
  667. .quote {
  668. margin-top: 10px;
  669. border: solid 1px #404040;
  670. border-radius: 10px;
  671. background-color: #121212;
  672. }
  673. .quote:hover {
  674. border-color: #808080;
  675. }
  676. .quote-container {
  677. position: relative;
  678. overflow: auto;
  679. padding: 6px;
  680. }
  681. .quote-link {
  682. height: 100%;
  683. width: 100%;
  684. left: 0;
  685. top: 0;
  686. position: absolute;
  687. }
  688. .quote-text {
  689. overflow: hidden;
  690. white-space: pre-wrap;
  691. word-wrap: break-word;
  692. }
  693. .quote-media-container {
  694. display: flex;
  695. flex-direction: column;
  696. align-items: center;
  697. overflow: hidden;
  698. max-height: 102px;
  699. width: 102px;
  700. float: left;
  701. margin-right: 7px;
  702. border-radius: 7px;
  703. }
  704. .quote-media {
  705. display: flex;
  706. justify-content: center;
  707. pointer-events: none;
  708. }
  709. .quote-media img {
  710. width: 100%;
  711. height: 100%;
  712. align-self: center;
  713. }
  714. .quote-badge {
  715. left: 6px;
  716. position: absolute;
  717. z-index: 1;
  718. align-self: flex-end;
  719. }
  720. .quote-badge-text {
  721. margin: 4px;
  722. background: rgba(0, 0, 0, 0.66);
  723. border-radius: 4px;
  724. color: #fffffff0;
  725. padding: 1px 3px;
  726. font-size: 12px;
  727. font-weight: bold;
  728. }
  729. .quote-sensitive {
  730. background: #353535;
  731. width: 102px;
  732. height: 102px;
  733. border-radius: 12px;
  734. display: flex;
  735. justify-content: center;
  736. align-items: center;
  737. }
  738. .quote-sensitive-icon {
  739. font-size: 25px;
  740. width: 37px;
  741. height: 32px;
  742. background-color: #4e4e4e;
  743. padding-bottom: 5px;
  744. margin: 0;
  745. }
  746. .poll-meter {
  747. overflow: hidden;
  748. position: relative;
  749. margin: 6px 0;
  750. height: 26px;
  751. background: #0f0f0f;
  752. border-radius: 5px;
  753. display: flex;
  754. align-items: center;
  755. }
  756. .poll-choice-bar {
  757. height: 100%;
  758. position: absolute;
  759. background: #383838;
  760. }
  761. .leader .poll-choice-bar {
  762. background: #8a3731;
  763. }
  764. .poll-choice-value {
  765. position: relative;
  766. font-weight: bold;
  767. margin-left: 5px;
  768. margin-right: 6px;
  769. min-width: 30px;
  770. text-align: right;
  771. }
  772. .poll-choice-option {
  773. position: relative;
  774. }
  775. .poll-info {
  776. color: #868687;
  777. }