style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  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. }
  8. #tweets {
  9. background-color: #161616;
  10. }
  11. #user {
  12. background-color: #242424;
  13. width: 100%;
  14. padding: 5pt;
  15. }
  16. #user > h1 {
  17. color: #ffffff;
  18. }
  19. h1 {
  20. margin: 0;
  21. display: inline;
  22. }
  23. h2 {
  24. margin: 0;
  25. font-weight: normal;
  26. }
  27. h3 {
  28. margin-bottom: 0;
  29. font-weight: normal;
  30. }
  31. h4 {
  32. margin: 0;
  33. }
  34. a {
  35. color: #ff6c60;
  36. text-decoration: none;
  37. }
  38. a:hover {
  39. text-decoration: underline;
  40. }
  41. .status-el {
  42. overflow-wrap: break-word;
  43. border-left-width: 0;
  44. min-width: 0;
  45. padding: .75em;
  46. display: flex;
  47. }
  48. .timeline-tweet {
  49. border-bottom: 1px solid #3e3e35;
  50. }
  51. .status-body {
  52. flex: 1;
  53. min-width: 0;
  54. }
  55. .media-heading {
  56. padding: 0;
  57. vertical-align: bottom;
  58. flex-basis: 100%;
  59. margin-bottom: .2em;
  60. }
  61. .media-heading a {
  62. display: inline-block;
  63. word-break: break-all;
  64. max-width: 100%;
  65. }
  66. .heading-name-row {
  67. padding: 0;
  68. display: flex;
  69. justify-content: space-between;
  70. }
  71. .fullname-and-username {
  72. display: flex;
  73. min-width: 0;
  74. }
  75. .fullname {
  76. overflow: hidden;
  77. text-overflow: ellipsis;
  78. flex-shrink: 2;
  79. max-width: 80%;
  80. white-space: nowrap;
  81. font-size: 14px;
  82. font-weight: 700;
  83. color: #f8f8f2;
  84. }
  85. .username {
  86. min-width: 1.6em;
  87. margin-left: .4em;
  88. white-space: nowrap;
  89. word-wrap: normal;
  90. overflow: hidden;
  91. text-overflow: ellipsis;
  92. }
  93. .icon {
  94. color: #fff;
  95. border-radius: 50%;
  96. display: inline-block;
  97. text-align: center;
  98. vertical-align: middle;
  99. flex-shrink: 0;
  100. margin: 2px 0 3px 3px;
  101. }
  102. .verified-icon {
  103. background-color: #1da1f2;
  104. height: 14px;
  105. width: 14px;
  106. font-size: 10px;
  107. }
  108. .protected-icon {
  109. background-color: #353535;
  110. height: 18px;
  111. width: 18px;
  112. font-size: 12px;
  113. font-weight: bold;
  114. }
  115. .heading-right {
  116. display: flex;
  117. flex-shrink: 0;
  118. margin-left: 4px;
  119. }
  120. .status-el .status-content {
  121. font-family: sans-serif;
  122. line-height: 1.4em;
  123. }
  124. .status-content.media-body {
  125. flex: 1;
  126. padding: 0;
  127. white-space: pre-wrap;
  128. }
  129. .container, .item {
  130. display: flex;
  131. }
  132. .container {
  133. flex-wrap: wrap;
  134. margin: 0;
  135. }
  136. #content {
  137. box-sizing: border-box;
  138. padding-top: 50px;
  139. margin: auto;
  140. min-height: 100vh;
  141. background-color: rgba(0,0,0,.15);
  142. }
  143. nav {
  144. z-index: 1000;
  145. background-color: #1f1f1f;
  146. color: hsla(240,1%,73%,.5);
  147. box-shadow: 0 0 4px rgba(0,0,0,.6);
  148. }
  149. .nav-bar {
  150. padding: 0;
  151. width: 100%;
  152. align-items: center;
  153. position: fixed;
  154. height: 50px;
  155. }
  156. .nav-bar .inner-nav {
  157. margin: auto;
  158. box-sizing: border-box;
  159. padding-left: 10px;
  160. padding-right: 10px;
  161. display: flex;
  162. align-items: center;
  163. height: 50px;
  164. }
  165. .item {
  166. flex: 1;
  167. line-height: 50px;
  168. height: 50px;
  169. overflow: hidden;
  170. flex-wrap: wrap;
  171. }
  172. .attachments {
  173. margin-top: .5em;
  174. display: flex;
  175. flex-direction: row;
  176. width: 100%;
  177. max-height: 600px;
  178. border-radius: 7px;
  179. overflow: hidden;
  180. flex-flow: column;
  181. background-color: #0f0f0f;
  182. align-items: center;
  183. }
  184. .gallery-row {
  185. display: flex;
  186. flex-direction: row;
  187. flex-wrap: nowrap;
  188. align-items: center;
  189. overflow: hidden;
  190. flex-grow: 1;
  191. max-height: 379.5px;
  192. max-width: 506px;
  193. }
  194. .gallery-row .attachment, .gallery-row .attachments {
  195. margin: 0 .25em 0 0;
  196. flex-grow: 1;
  197. box-sizing: border-box;
  198. min-width: 2em;
  199. }
  200. .gallery-row .attachment:last-child, .gallery-row .attachments:last-child {
  201. margin: 0;
  202. }
  203. .attachments .attachment {
  204. position: relative;
  205. line-height: 0;
  206. border-color: #222;
  207. overflow: hidden;
  208. }
  209. .gallery-row .image-attachment {
  210. width: 100%;
  211. }
  212. .attachments .image-attachment {
  213. width: 100%;
  214. }
  215. .still-image {
  216. max-height: 379.5px;
  217. max-width: 506px;
  218. justify-content: center;
  219. }
  220. .still-image img {
  221. object-fit: cover;
  222. max-width: 506px;
  223. max-height: 379.5px;
  224. border-color: #222;
  225. flex-basis: 300px;
  226. }
  227. .status-body {
  228. margin-left: 58px;
  229. }
  230. .avatar {
  231. float: left;
  232. margin-top: 3px;
  233. margin-left: -58px;
  234. position: absolute;
  235. width: 48px;
  236. height: 48px;
  237. border-radius: 50%;
  238. }
  239. .retweet, .pinned, .tweet-stats {
  240. align-content: center;
  241. color: hsla(240,1%,73%,.7);
  242. display: flex;
  243. flex-shrink: 0;
  244. flex-wrap: wrap;
  245. font-size: 14px;
  246. font-weight: 600;
  247. line-height: 22px;
  248. margin: 0;
  249. max-width: 85%;
  250. overflow: hidden;
  251. text-overflow: ellipsis;
  252. white-space: nowrap;
  253. }
  254. .tweet-stat {
  255. padding-top: 5px;
  256. padding-right: 8px;
  257. }
  258. .show-more {
  259. text-align: center;
  260. padding: .75em 0;
  261. display: block;
  262. }
  263. .show-more.status-el {
  264. border-bottom: 1px solid #3e3e35;
  265. }
  266. .show-more a {
  267. background-color: #242424;
  268. display: inline-block;
  269. height: 2em;
  270. padding: 0 2em;
  271. line-height: 2em;
  272. }
  273. .show-more a:hover {
  274. background-color: #282828;
  275. }
  276. .profile-tabs {
  277. max-width: 846px;
  278. margin: 0 auto;
  279. float: none;
  280. border-radius: 0;
  281. position: relative;
  282. width: auto;
  283. }
  284. .timeline-tab {
  285. float: right;
  286. padding: 0 4px;
  287. box-sizing: border-box;
  288. display: inline-block;
  289. font-size: 14px;
  290. margin: 0;
  291. text-align: left;
  292. vertical-align: top;
  293. width: 70% !important;
  294. }
  295. .profile-tab {
  296. padding: 0 4px;
  297. box-sizing: border-box;
  298. display: inline-block;
  299. font-size: 14px;
  300. margin: 0;
  301. text-align: left;
  302. vertical-align: top;
  303. width: 30% !important;
  304. }
  305. .profile-banner {
  306. padding: 0 4px;
  307. }
  308. .profile-banner img {
  309. width: 100%;
  310. padding-bottom: 3px;
  311. }
  312. .profile-banner-color {
  313. width: 100%;
  314. padding-bottom: 25%;
  315. margin-bottom: 8px;
  316. }
  317. .profile-card {
  318. float: left;
  319. flex-wrap: wrap;
  320. margin-top: 0;
  321. background: #161616;
  322. border-radius: 0 0 4px 4px;
  323. padding: 12px;
  324. position: relative;
  325. display: flex;
  326. justify-content: flex-start;
  327. max-width: 90%;
  328. }
  329. .profile-card-tabs {
  330. display: flex;
  331. justify-content: space-between;
  332. align-items: center;
  333. flex: 1 1 auto;
  334. max-width: 100%;
  335. }
  336. .profile-card-tabs-name {
  337. max-width: 100%;
  338. }
  339. .profile-card-username, .profile-card-fullname {
  340. color: #f8f8f2;
  341. }
  342. .profile-card-fullname {
  343. font-size: 16px;
  344. text-shadow: none;
  345. text-overflow: ellipsis;
  346. max-width: 100%;
  347. font-weight: bold;
  348. }
  349. .profile-card-username {
  350. font-size: 14px;
  351. overflow: hidden;
  352. text-overflow: ellipsis;
  353. display: block;
  354. }
  355. .profile-card-avatar {
  356. display: block;
  357. width: 100%;
  358. padding-bottom: 16px;
  359. margin-right: 4px;
  360. }
  361. .profile-card-avatar img {
  362. display: block;
  363. width: calc(100% - 4px);
  364. height: 100%;
  365. margin: 0;
  366. border: 4px solid #282828;
  367. background: #040404;
  368. }
  369. .profile-card-extra {
  370. display: block;
  371. flex: 100%;
  372. margin-top: 4px;
  373. }
  374. .profile-bio {
  375. border-radius: 0;
  376. box-shadow: none;
  377. background: transparent;
  378. overflow: hidden;
  379. margin-right: -5px
  380. }
  381. .profile-description {
  382. font-size: 14px;
  383. font-weight: 400;
  384. overflow: hidden;
  385. word-break: normal;
  386. word-wrap: break-word;
  387. }
  388. .conversation {
  389. max-width: 580px;
  390. margin: 0 auto;
  391. float: none;
  392. border-radius: 0;
  393. position: relative;
  394. width: auto;
  395. background-color: #0f0f0f !important;
  396. }
  397. .main-thread {
  398. margin-bottom: 20px;
  399. background-color: #161616;
  400. }
  401. .main-tweet .status-content {
  402. font-size: 22px;
  403. line-height: 30px;
  404. letter-spacing: .01em;
  405. }
  406. .thread {
  407. background-color: #161616;
  408. margin-bottom: 10px;
  409. }
  410. .panel {
  411. margin: auto;
  412. font-size: 130%;
  413. }
  414. .error-panel {
  415. background-color: #420a05 !important;
  416. }
  417. .error-panel, .search-panel > form {
  418. padding: 12px;
  419. border-radius: 4px;
  420. display: flex;
  421. background: #222222;
  422. box-shadow: 0 0 15px rgba(0,0,0,.2);
  423. margin: auto;
  424. margin-top: -50px;
  425. }
  426. .search-panel > form > button {
  427. font-size: 14px;
  428. line-height: 24px;
  429. display: block;
  430. border: 0;
  431. border-radius: 4px;
  432. background: #2f2f2f;
  433. color: #f8f8f2;
  434. outline: 0;
  435. text-decoration: none;
  436. text-align: center;
  437. box-sizing: border-box;
  438. cursor: pointer;
  439. font-weight: bold;
  440. width: 37px;
  441. height: 32px;
  442. padding: 0;
  443. }
  444. .search-panel > form > input {
  445. box-sizing: border-box;
  446. font-size: 16px;
  447. display: block;
  448. width: 100%;
  449. outline: 0;
  450. font-family: inherit;
  451. background: #131419;
  452. color: #f8f8f2;
  453. border: 1px solid #0a0b0e;
  454. border-radius: 4px;
  455. padding: 4px;
  456. margin-right: 8px;
  457. }
  458. .profile-card-extra-links {
  459. margin-top: 8px;
  460. font-size: 14px;
  461. }
  462. .profile-statlist {
  463. vertical-align: bottom;
  464. table-layout: fixed;
  465. box-sizing: border-box;
  466. display: flex;
  467. margin: 0;
  468. padding: 0 2px;
  469. width: 100%;
  470. }
  471. .profile-statlist > li {
  472. display: table-cell;
  473. text-align: center;
  474. }
  475. .profile-statlist .tweets {
  476. flex-shrink: 2;
  477. }
  478. .profile-statlist .followers {
  479. flex-grow: 2;
  480. }
  481. .profile-statlist .following {
  482. flex-shrink: 1.5;
  483. }
  484. .profile-stat-header {
  485. font-weight: bold;
  486. }
  487. .timeline-protected {
  488. max-width: 550px;
  489. margin: 0 auto;
  490. padding: 6px 0px;
  491. }
  492. .timeline-protected-header {
  493. color: #d0564c;
  494. font-size: 21px;
  495. font-weight: bold;
  496. }
  497. .media-gif {
  498. display: table-cell;
  499. padding-top: 5px !important;
  500. background-color: unset;
  501. }
  502. video {
  503. height: 100%;
  504. width: 100%;
  505. }
  506. .video-overlay {
  507. width: 100%;
  508. height: 100%;
  509. position: absolute;
  510. top: 0;
  511. left: 0;
  512. z-index: 1;
  513. background-color: #000000bd;
  514. }
  515. .video-overlay p {
  516. position: relative;
  517. z-index: 0;
  518. color: #dcdcdc;
  519. text-align: center;
  520. top: calc(50% - 20px);
  521. font-size: 20px;
  522. }
  523. .quote {
  524. margin-top: 10px;
  525. border: solid 1px #404040;
  526. border-radius: 10px;
  527. background-color: #121212;
  528. }
  529. .quote:hover {
  530. border-color: #808080;
  531. }
  532. .quote-container {
  533. position: relative;
  534. overflow: auto;
  535. padding: 6px;
  536. }
  537. .quote-link {
  538. height: 100%;
  539. width: 100%;
  540. left: 0;
  541. top: 0;
  542. position: absolute;
  543. }
  544. .quote-text {
  545. overflow: hidden;
  546. white-space: pre-wrap;
  547. word-wrap: break-word;
  548. }
  549. .quote-media-container {
  550. display: flex;
  551. flex-direction: column;
  552. align-items: center;
  553. overflow: hidden;
  554. max-height: 102px;
  555. width: 102px;
  556. float: left;
  557. margin-right: 7px;
  558. border-radius: 7px;
  559. }
  560. .quote-media {
  561. display: flex;
  562. justify-content: center;
  563. pointer-events: none;
  564. }
  565. .quote-media img {
  566. width: 100%;
  567. height: 100%;
  568. align-self: center;
  569. }
  570. .quote-badge {
  571. left: 6px;
  572. position: absolute;
  573. z-index: 1;
  574. align-self: flex-end;
  575. }
  576. .quote-badge-text {
  577. margin: 4px;
  578. background: rgba(0, 0, 0, 0.66);
  579. border-radius: 4px;
  580. color: #fffffff0;
  581. padding: 0px 2px;
  582. font-size: 12px;
  583. font-weight: bold;
  584. }
  585. .quote-sensitive {
  586. background: #353535;
  587. width: 102px;
  588. height: 102px;
  589. border-radius: 12px;
  590. display: flex;
  591. justify-content: center;
  592. align-items: center;
  593. }
  594. .quote-sensitive-icon {
  595. font-size: 25px;
  596. width: 37px;
  597. height: 32px;
  598. background-color: #4e4e4e;
  599. padding-bottom: 5px;
  600. margin: 0;
  601. }