style.css 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505
  1. @charset "utf-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. font-size: 100%;
  6. }
  7. a {
  8. text-decoration: none;
  9. word-break: break-word;
  10. color: inherit;
  11. }
  12. a:hover {
  13. text-decoration: underline;
  14. }
  15. ul, ol {
  16. list-style: none;
  17. padding: 0;
  18. margin: 0;
  19. }
  20. img {
  21. vertical-align: top;
  22. border: 0;
  23. max-width: 100%;
  24. max-height: 100%;
  25. }
  26. button {
  27. font-size: 100%;
  28. }
  29. .clear {
  30. clear: both;
  31. }
  32. .red {
  33. color: red!important;
  34. }
  35. .invisible {
  36. display: none!important;
  37. }
  38. .ellipsis:after {
  39. content:"...";
  40. }
  41. .no-events {
  42. pointer-events: none;
  43. }
  44. .disallow_select {
  45. user-select: none;
  46. -ms-user-select: none;
  47. -webkit-user-select: none;
  48. -moz-user-select: none;
  49. }
  50. .text_ellipsis {
  51. text-overflow: ellipsis;
  52. overflow: hidden;
  53. white-space: nowrap;
  54. }
  55. h1, h2, h3, h4, h5, h6 {
  56. font-weight: normal;
  57. line-height: normal;
  58. margin: 0;
  59. padding: 0;
  60. }
  61. blockquote, q {
  62. quotes: none;
  63. margin: 0;
  64. }
  65. blockquote * {
  66. margin: 0;
  67. word-break: break-all;
  68. }
  69. blockquote:before, blockquote:after,
  70. q:before, q:after {
  71. content:'';
  72. content:none;
  73. }
  74. article,aside,details,figcaption,figure,
  75. footer,header,hgroup,menu,nav,section {
  76. display:block;
  77. }
  78. textarea {
  79. width: 100%;
  80. }
  81. input {
  82. max-width: 100%;
  83. }
  84. button, input[type="submit"], input[type="button"]{
  85. background-color: transparent;
  86. border: none;
  87. cursor: pointer;
  88. outline: none;
  89. padding: 0;
  90. appearance: none;
  91. }
  92. img.emoji {
  93. height: 1em;
  94. width: 1em;
  95. margin: 0 .05em 0 .1em;
  96. vertical-align: -0.1em;
  97. }
  98. .emoji_poss .auth_emoji {
  99. display: inline-block;
  100. height: 100%;
  101. margin: auto;
  102. margin-left: 4px;
  103. }
  104. html {
  105. font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  106. font-size: 100%;
  107. line-height: normal;
  108. color: #333;
  109. min-width: 100%;
  110. min-height: 100%;
  111. }
  112. body {
  113. margin: 0;
  114. padding: 0;
  115. min-width: 100%;
  116. min-height: 100%;
  117. word-wrap:break-word;
  118. background-color: #F5F8FA;
  119. }
  120. .status_form {
  121. width: 100%;
  122. padding: 12px;
  123. box-sizing: border-box;
  124. background-color: #E8F4FB;
  125. }
  126. .status_form.ready {
  127. background-color: #F2FAFF!important;
  128. }
  129. .status_form.ready .status_bottom .status_media_attachment,
  130. .status_form.ready .status_bottom .status_privacy,
  131. .status_form.ready .status_bottom .status_emoji {
  132. color: #7ECEFF!important;
  133. }
  134. .status_form.ready .status_bottom .status_CW > span,
  135. .status_form.ready .status_bottom .status_NSFW > span {
  136. background-color: #7ECEFF!important;
  137. }
  138. .status_form.ready .status_bottom .submit_status_label {
  139. background-color: #A3D8FF!important;
  140. pointer-events: none;
  141. cursor: default;
  142. }
  143. .status_form .status_top {
  144. display: flex;
  145. align-items: center;
  146. width: calc( 100% - 54px );
  147. padding-bottom: 0;
  148. margin-left: 54px;
  149. box-sizing: border-box;
  150. }
  151. .status_form .status_top .status_spoiler {
  152. color: #189EFC;
  153. width: 100%;
  154. height: 35px;
  155. border-radius: 4px;
  156. border: 1px solid #C7E7FB;
  157. font-size: 14px;
  158. padding: 8px;
  159. box-sizing: border-box;
  160. }
  161. .status_form .status_main {
  162. display: flex;
  163. flex-wrap: nowrap;
  164. }
  165. .status_form .status_main .icon_box {
  166. flex-shrink: 0;
  167. margin-right: 8px;
  168. width: 32px;
  169. height: 32px;
  170. border-radius: 5px;
  171. overflow: hidden;
  172. margin-left: 14px;
  173. }
  174. .status_form .status_main .status_textarea {
  175. flex: 1;
  176. padding: 8px;
  177. border-radius: 3px;
  178. box-sizing: border-box;
  179. border: 1px solid #C7E7FB;
  180. background-color: #fff;
  181. }
  182. .status_form .status_main .status_textarea textarea {
  183. color: #000;
  184. resize: none;
  185. height: 18px;
  186. border: none;
  187. max-width: 100%;
  188. font-size: 14px;
  189. font-family : "Helvetica Neue",Helvetica,Arial,sans-serif;
  190. line-height: normal;
  191. outline: 0;
  192. overflow: hidden;
  193. }
  194. .status_form .status_textarea textarea.focus {
  195. height: 68px;
  196. }
  197. .status_form .status_textarea .media_attachments_preview_area {
  198. display: flex;
  199. flex-wrap: nowrap;
  200. margin: 8px -8px -8px -8px;
  201. padding: 8px 12px;
  202. background-color: #F1F1F1;
  203. border-top: 1px solid #C7E7FB;
  204. }
  205. .status_form .status_textarea .media_attachments_preview {
  206. position: relative;
  207. flex-shrink: 0;
  208. max-width: 113px;
  209. height: 113px;
  210. margin-right: 8px;
  211. border-radius: 5px;
  212. border: 1px solid #C7E7FB;
  213. overflow: hidden;
  214. flex: 1;
  215. background-color: #fff;
  216. }
  217. .status_form .status_textarea .media_attachments_preview:last-child {
  218. margin-right: 0;
  219. }
  220. .status_form .status_textarea .media_attachments_preview_area.nsfw .media_attachments_preview::after {
  221. display: block;
  222. content: "";
  223. cursor: pointer;
  224. top: 0;
  225. font-weight: 300;
  226. width: 100%;
  227. height: 100%;
  228. position: absolute;
  229. background-color: rgba(0, 0, 0, 1);
  230. transition: 0.13s;
  231. }
  232. .status_form .status_textarea .media_attachments_preview_area.nsfw .media_attachments_preview:hover::after {
  233. background-color: rgba(0, 0, 0, 0);
  234. transition: 0.13s;
  235. }
  236. .status_form .status_textarea .media_attachments_preview img {
  237. width: 100%;
  238. height: 100%;
  239. object-fit: cover;
  240. }
  241. .status_form .status_textarea .media_attachments_preview .remove_button {
  242. position: absolute;
  243. z-index: 1;
  244. right: 0;
  245. top: 0;
  246. color: #fff;
  247. background-color: rgba(0, 0, 0, .8);
  248. border-radius: 50%;
  249. width: 19px;
  250. height: 19px;
  251. display: flex;
  252. align-content: center;
  253. justify-content: center;
  254. font-size: 14px;
  255. margin: 4px 4px 0 0;
  256. }
  257. .status_form .status_bottom {
  258. display: flex;
  259. align-items: center;
  260. width: calc( 100% - 52px );
  261. padding: 8px 0;
  262. padding-bottom: 0;
  263. box-sizing: border-box;
  264. padding-right: 0;
  265. margin-left: 52px;
  266. }
  267. .status_form .status_bottom .status_option_button {
  268. cursor: pointer;
  269. color: #43A7E5;
  270. font-size: 21px;
  271. border-radius: 3px;
  272. padding: 8px 12px;
  273. box-sizing: border-box;
  274. border: 1px solid transparent;;
  275. height: 39px;
  276. display: flex;
  277. justify-content: center;
  278. align-items: center;
  279. }
  280. .status_form .status_bottom .status_option_button:hover {
  281. border: 1px solid #C7E7FB
  282. }
  283. .status_form .status_bottom .status_option_button.active {
  284. animation-name: status_action_active;
  285. animation-duration: 0.5s;
  286. }
  287. .status_form .status_bottom .status_CW > span,
  288. .status_form .status_bottom .status_NSFW > span {
  289. display: flex;
  290. align-items: center;
  291. height: 22px;
  292. padding: 4px;
  293. color: #E8F4FB;
  294. border-radius: 3px;
  295. box-sizing: border-box;
  296. background-color: #43A7E5;
  297. text-align: center;
  298. }
  299. .status_form .status_bottom .status_CW > span {
  300. font-size: 10px;
  301. }
  302. .status_form .status_bottom .status_NSFW > span {
  303. font-size: 8px;
  304. }
  305. .status_form .status_bottom .status_privacy {
  306. position: relative;
  307. }
  308. .status_form .status_bottom .status_privacy .expand_privacy_menu {
  309. display: block;
  310. position: absolute;
  311. cursor: pointer;
  312. top: 32px;
  313. right: -122px;
  314. width: 160px;
  315. padding: 18px;
  316. font-size: 12px;
  317. border-radius: 3px;
  318. box-sizing: border-box;
  319. background-color: #fff;
  320. box-shadow: 0.5px 0.5px 3px rgba(0,0,0,0.26);
  321. z-index: 2;
  322. }
  323. .status_form .status_bottom .status_privacy .expand_privacy_menu::before {
  324. display: block;
  325. content: "";
  326. z-index: -1;
  327. width: 20px;
  328. height: 20px;
  329. position: absolute;
  330. transform: rotate(45deg);
  331. top: -5px;
  332. left: 8px;
  333. background-color: #fff;
  334. }
  335. .status_form .status_bottom .status_privacy .expand_privacy_menu .status_privacy {
  336. display: block;
  337. cursor: pointer;
  338. font-size: 14px;
  339. margin-bottom: 12px;
  340. color: rgb(101, 119, 134);
  341. text-align: left;
  342. }
  343. .status_form .status_bottom .status_privacy .expand_privacy_menu .status_privacy:last-child {
  344. margin-bottom: 0;
  345. }
  346. .status_form .status_bottom .status_privacy .expand_privacy_menu .status_privacy:hover {
  347. color: #189EFC;
  348. }
  349. .status_form .status_bottom .status_privacy .expand_privacy_menu .status_privacy i {
  350. margin-right: 4px;
  351. }
  352. .status_form .status_bottom .submit_status_label_wrap {
  353. flex-grow: 1;
  354. display: flex;
  355. align-items: center;
  356. justify-content: flex-end;
  357. height: 39px;
  358. }
  359. .status_form .status_bottom .character_count {
  360. color: #66757F;
  361. font-size: 14px;
  362. padding: 0 12px;
  363. box-sizing: border-box;
  364. }
  365. .status_form .status_bottom .submit_status_label {
  366. height: 100%;
  367. padding: 6px 24px;
  368. cursor: pointer;
  369. float: right;
  370. border-radius: 4px;
  371. color: #fff;
  372. background-color: #2588D0;
  373. transition: 0.15s ease-out;
  374. box-sizing: border-box;
  375. display: flex;
  376. justify-content: center;
  377. align-items: center;
  378. }
  379. .status_form .status_bottom .submit_status_label:hover {
  380. background-color: #2571D0;
  381. transition: 0.15s ease-out;
  382. }
  383. .status_form .status_bottom .submit_status_label:active {
  384. background-color: #255ED0;
  385. transition: 0.15s ease-out;
  386. }
  387. .status_form .status_bottom .submit_status_label .toot_button_label {
  388. display: flex;
  389. justify-content: center;
  390. align-items: center;
  391. }
  392. .status_form .status_bottom .submit_status_label .toot_button_label i {
  393. display: inline-block;
  394. font-size: 21px;
  395. margin-right: 2px;
  396. }
  397. .status_form .status_bottom .submit_status_label .toot_button_label span {
  398. font-size: 13px;
  399. font-weight: 500;
  400. }
  401. .overlay_status{
  402. /*! width: 628px; */
  403. /*! margin: auto; */
  404. /*! z-index: 1000; */
  405. /*! top: 20%; */
  406. /*! left: 0; */
  407. /*! position: absolute; */
  408. /*! right: 0; */
  409. /*! bottom: 0; */
  410. margin-top: 20%;
  411. }
  412. .overlay_status_header {
  413. width: 600px;
  414. padding: 16px;
  415. box-sizing: border-box;
  416. background-color: #fff;
  417. border-top-left-radius: 5px;
  418. border-top-right-radius: 5px;
  419. margin: auto;
  420. text-align: center;
  421. color: #66757F;
  422. font-size: 18px;
  423. font-weight: 300;
  424. }
  425. #overlay_status_form.status_form {
  426. width: 600px;
  427. padding: 16px;
  428. box-sizing: border-box;
  429. background-color: #E8F4FB;
  430. border-bottom-left-radius: 5px;
  431. border-bottom-right-radius: 5px;
  432. margin: auto;
  433. }
  434. #overlay_status_form.status_form .status_top {
  435. width: 100%;
  436. margin-left: 0;
  437. }
  438. #overlay_status_form.status_form .status_main {
  439. display: flex;
  440. flex-wrap: nowrap;
  441. }
  442. #overlay_status_form.status_form .status_main .status_textarea {
  443. flex: 1;
  444. }
  445. #overlay_status_form.status_form .status_main .status_textarea textarea {
  446. color: #000;
  447. resize: none;
  448. max-width: 100%;
  449. height: auto;
  450. min-height: 72px;
  451. border-radius: 5px;
  452. font-family : "Helvetica Neue",Helvetica,Arial,sans-serif;
  453. font-size: 14px;
  454. padding: 4px;
  455. outline: 0;
  456. box-sizing: border-box;
  457. }
  458. #overlay_status_form.status_form .status_bottom {
  459. display: flex;
  460. align-items: center;
  461. width: auto;
  462. padding: 8px 0;
  463. padding-bottom: 0;
  464. margin-left: 0;
  465. box-sizing: border-box;
  466. padding-right: 0;
  467. }
  468. #reply_status_form.status_form:last-child {
  469. border-bottom-left-radius: 5px;
  470. border-bottom-right-radius: 5px;
  471. }
  472. .single_reply_status,.report_status {
  473. width: 600px;
  474. margin: auto;
  475. margin-top: 20%;
  476. }
  477. .single_reply_status_header,.report_status_header {
  478. width: 600px;
  479. padding: 16px;
  480. box-sizing: border-box;
  481. background-color: #fff;
  482. border-top-left-radius: 5px;
  483. border-top-right-radius: 5px;
  484. margin: auto;
  485. text-align: center;
  486. color: #66757F;
  487. font-size: 18px;
  488. font-weight: 300;
  489. }
  490. .single_reply_status .status_preview,.report_status .status_preview {
  491. border-top: 1px solid #E1E8ED;
  492. }
  493. .single_reply_status .status_preview .toot_entry .toot_footer,.report_stauts .status_preview .toot_entry .toot_footer {
  494. display: none!important;
  495. }
  496. .single_reply_status .status_form .status_bottom,.report_status .status_form .status_bottom {
  497. width: 100%;
  498. margin-left: 0;
  499. }
  500. #single_reply_status_form.status_form,#report_status_form.status_form {
  501. width: 600px;
  502. padding: 16px;
  503. box-sizing: border-box;
  504. background-color: #E8F4FB;
  505. border-bottom-left-radius: 5px;
  506. border-bottom-right-radius: 5px;
  507. margin: auto;
  508. }
  509. #single_reply_status_form.status_form .status_bottom .submit_status_label .toot_button_label i,#report_status_form.status_form .status_bottom .submit_status_label .toot_button_label i {
  510. font-size: 18px;
  511. margin-right: 8px;
  512. }
  513. .overlay_copy_link {
  514. width: 600px;
  515. margin: auto;
  516. margin-top: 20%;
  517. }
  518. .overlay_copy_link_header {
  519. width: 600px;
  520. padding: 16px;
  521. box-sizing: border-box;
  522. background-color: #fff;
  523. border-top-left-radius: 5px;
  524. border-top-right-radius: 5px;
  525. margin: auto;
  526. text-align: center;
  527. color: #66757F;
  528. font-size: 18px;
  529. font-weight: 300;
  530. border-bottom: 1px solid #E6ECF0;
  531. }
  532. .overlay_copy_link .overlay_copy_link_form {
  533. width: 600px;
  534. padding: 16px;
  535. box-sizing: border-box;
  536. background-color: #fff;
  537. border-bottom-left-radius: 5px;
  538. border-bottom-right-radius: 5px;
  539. margin: auto;
  540. }
  541. .overlay_copy_link .overlay_copy_link_form input {
  542. width: 100%;
  543. height: 36px;
  544. padding: 4px 16px;
  545. border: 1px solid #E6ECF0;
  546. background-color: #F5F8FA;
  547. box-sizing: border-box;
  548. font-size: 14px;
  549. border-radius: 3px;
  550. }
  551. .relationship_button {
  552. display: flex;
  553. flex-wrap: nowrap;
  554. align-items: center;
  555. font-size: 13px;
  556. padding: 6px 13px;
  557. margin-top: 4px;
  558. border-radius: 4px;
  559. border: 1px solid #189EFC;
  560. }
  561. .relationship_button i {
  562. margin-right: 4px;
  563. }
  564. .relationship_button span {
  565. font-weight: 600;
  566. }
  567. .follow_button,.halcyon_button {border: 1px solid #189EFC; color: #189EFC;}
  568. .follow_button i,.halcyon_button i {color: #189EFC}
  569. .follow_button:hover,.follow_button:hover i,.halcyon_button:hover,.halcyon_button:hover i {background-color: #189EFC;color: #fff;}
  570. .following_button,
  571. .following_button i {background-color: #189EFC;color: #fff;}
  572. .following_button:hover,
  573. .following_button:hover i {background-color: #E20055;color: #fff;}
  574. .muting_button {background-color: #E20055;color: #fff;}
  575. .muting_button i {color: #fff;}
  576. .muting_button:hover,
  577. .muting_button:hover i {background-color: #B82424;color: #fff;}
  578. .blocking_button{background-color: #fff;color: #E20055}
  579. .blocking_button i {color: #E20055;}
  580. .blocking_button:hover,
  581. .blocking_button:hover i {background-color: #B82424;}
  582. .profile_edit_button{background-color: #FFF;color: #66757F;border: 1px solid #66757F;}
  583. .profile_edit_button:hover,
  584. .profile_edit_button:hover i {background-color: #F5F8FA;}
  585. .timeline_header {
  586. background-color: #fff;
  587. box-sizing: border-box;
  588. border: 1px solid #ECF1F4;
  589. border-bottom: none;
  590. border-top-right-radius: 5px;
  591. border-top-left-radius: 5px;
  592. }
  593. .timeline_header .header_items {
  594. display: flex;
  595. flex-wrap: nowrap;
  596. align-items: center;
  597. }
  598. .timeline_header .header_items .item {
  599. display: inline-block;
  600. font-size: 18px;
  601. font-weight: 300;
  602. padding: 15px;
  603. color: #189EFC;
  604. box-sizing: border-box;
  605. }
  606. .timeline_header .header_items .item.view {
  607. font-weight: 600;
  608. color: #000;
  609. }
  610. .timeline {
  611. background-color: #fff;
  612. box-sizing: border-box;
  613. border: 1px solid #ECF1F4;
  614. }
  615. .timeline .boost_author_box {
  616. margin-left: 46px;
  617. margin-bottom: -12px;
  618. padding: 8px 0;
  619. font-size: 12px;
  620. color: rgb(101, 119, 134);
  621. height: 14px;
  622. }
  623. .timeline .boost_author_box i {
  624. display: inline-block;
  625. width: 10px;
  626. height: 10px;
  627. padding: 2px;
  628. margin-right: 11px;
  629. color: #fff;
  630. background-color: #17BF63;
  631. border-radius: 2px;
  632. font-size: 10px;
  633. /*! height: 14px; */
  634. }
  635. .timeline .pinned_notice_box {
  636. margin-left: 46px;
  637. margin-bottom: -12px;
  638. padding: 8px 0;
  639. font-size: 12px;
  640. color: rgb(101, 119, 134);
  641. height: 14px;
  642. }
  643. .timeline .pinned_notice_box i {
  644. display: inline-block;
  645. width: 10px;
  646. height: 10px;
  647. padding: 2px;
  648. margin-right: 11px;
  649. color: #fff;
  650. background-color: #1DA1F2;
  651. border-radius: 2px;
  652. font-size: 10px;
  653. /*! height: 14px; */
  654. }
  655. .toot_entry {
  656. cursor: pointer;
  657. background-color: #fff;
  658. list-style: none;
  659. }
  660. .toot_entry:hover {
  661. background-color: #F5F8FA;
  662. }
  663. .toot_entry .toot_entry_body {
  664. display: flex;
  665. flex-wrap: nowrap;
  666. padding: 12px;
  667. box-sizing: border-box;
  668. border-bottom: 1px solid #ECF1F4;
  669. }
  670. .toot_entry .toot_entry_body > a {
  671. height: 48px;
  672. }
  673. .toot_entry .toot_entry_body .icon_box {
  674. flex-shrink: 0;
  675. width: 48px;
  676. height: 48px;
  677. margin-right: 12px;
  678. border-radius: 5px;
  679. overflow: hidden;
  680. z-index: 1;
  681. }
  682. .toot_entry .toot_entry_body .icon_box img {
  683. width: 48px;
  684. height: 48px;
  685. }
  686. .toot_entry .toot_entry_body .toot_content {
  687. flex-grow: 1;
  688. height: 100%;
  689. max-width: 504px;
  690. /*! z-index: 1; */
  691. }
  692. .toot_entry .toot_entry_body .toot_content .toot_header {
  693. color: rgb(101, 119, 134);
  694. position: relative;
  695. font-size: 14px;
  696. padding-right: 16px;
  697. }
  698. .toot_entry .toot_entry_body .toot_content .toot_header .text_ellipsis a {
  699. line-height: normal;
  700. height: 16.5px;
  701. margin-bottom: -4.5px;
  702. }
  703. .toot_entry .toot_entry_body .toot_content .toot_header .displayname {
  704. color: rgb(20, 23, 26);
  705. font-weight: bold;
  706. }
  707. .toot_entry .toot_entry_body .toot_content .toot_header .displayname:hover {
  708. color: #189EFC;
  709. }
  710. .toot_entry .toot_entry_body .toot_content .toot_header .right-top_button {
  711. flex: 1;
  712. height: 100%;
  713. }
  714. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap {
  715. position: absolute;
  716. top: 0;
  717. right: 0;
  718. }
  719. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_button {
  720. position: absolute;
  721. right: 0;
  722. top: 0;
  723. color: #AAB8C2;
  724. }
  725. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_button:hover {
  726. color: #189EFC;
  727. }
  728. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu {
  729. display: block;
  730. position: absolute;
  731. cursor: pointer;
  732. top: 36px;
  733. right: -152px;
  734. width: 180px;
  735. padding: 8px 21px;
  736. font-size: 12px;
  737. border-radius: 3px;
  738. box-sizing: border-box;
  739. background-color: #fff;
  740. box-shadow: 0.5px 0.5px 3px rgba(0,0,0,0.26);
  741. z-index: 1;
  742. }
  743. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu::before {
  744. display: block;
  745. content: "";
  746. z-index: -1;
  747. width: 20px;
  748. height: 20px;
  749. position: absolute;
  750. transform: rotate(45deg);
  751. top: -5px;
  752. left: 8px;
  753. background-color: #fff;
  754. }
  755. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu ul {
  756. margin: 0 -21px;
  757. margin-bottom: 8px;
  758. }
  759. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu ul::after {
  760. content: "";
  761. display: block;
  762. margin-top: 8px;
  763. border-bottom: 1px solid #E6ECF0;
  764. }
  765. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu ul:last-child::after {
  766. border-bottom: 0px solid #E6ECF0;
  767. }
  768. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu ul li {
  769. box-sizing: border-box;
  770. }
  771. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu ul:last-child li {
  772. margin-bottom: 0;
  773. }
  774. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu a {
  775. display: block;
  776. padding: 8px 21px;
  777. box-sizing: border-box;
  778. }
  779. .toot_entry .toot_entry_body .toot_content .toot_header .expand_button_wrap .expand_menu a:hover {
  780. background-color: #189EFC;
  781. text-decoration: none;
  782. color: #fff;
  783. }
  784. .toot_entry .toot_entry_body .toot_content .cw_button {
  785. background-color: #6D768C;
  786. border-radius: 3px;
  787. padding: 4px;
  788. margin: auto 4px;
  789. font-size: 8px;
  790. box-sizing: border-box;
  791. color: #fff;
  792. }
  793. .toot_entry .toot_entry_body .toot_content .toot_article {
  794. font-size: 14px;
  795. line-height: 20px;
  796. margin-top: 4px;
  797. }
  798. .toot_entry .toot_entry_body .toot_content .toot_article a {
  799. color: #2588D0;
  800. }
  801. .toot_entry .toot_entry_body .toot_content .toot_article.content_warning .status_content {
  802. display: none;
  803. }
  804. .toot_entry .toot_entry_body .toot_content .toot_footer {
  805. display: flex;
  806. flex-wrap: nowrap;
  807. align-items: center;
  808. width: 240px;
  809. height: 21px;
  810. margin-top: 8px;
  811. }
  812. .toot_entry .toot_entry_body .toot_content .toot_reaction {
  813. height: 21px;
  814. flex-grow: 1;
  815. }
  816. .toot_entry .toot_entry_body .toot_content .toot_reaction button {
  817. margin: auto;
  818. color: #AAB8C2;
  819. font-size: 18px;
  820. height: 21px;
  821. }
  822. .toot_entry .toot_entry_body .toot_content .toot_reaction button.active {
  823. animation-name: status_action_active;
  824. animation-duration: 0.5s;
  825. }
  826. .toot_entry .toot_entry_body .toot_content .toot_reaction button .reaction_count {
  827. color: #AAB8C2;
  828. font-size: 12px;
  829. font-weight: 600;
  830. }
  831. @keyframes status_action_active {
  832. 0% { transform: scale(1); }
  833. 50% { transform: scale(2); }
  834. 100% { transform: scale(1); }
  835. }
  836. .toot_entry .toot_entry_body .toot_content .toot_reaction .reply_button:hover {
  837. color: #1DA1F2;
  838. }
  839. .toot_entry .toot_entry_body .toot_content .toot_reaction .boost_button[reblogged="null"]:hover,
  840. .toot_entry .toot_entry_body .toot_content .toot_reaction .boost_button[reblogged="true"],
  841. .toot_entry .toot_entry_body .toot_content .toot_reaction .boost_button[reblogged="null"]:hover .reaction_count,
  842. .toot_entry .toot_entry_body .toot_content .toot_reaction .boost_button[reblogged="true"] .reaction_count {
  843. color: #17BF63;
  844. }
  845. .toot_entry .toot_entry_body .toot_content .toot_reaction .fav_button[favourited="null"]:hover,
  846. .toot_entry .toot_entry_body .toot_content .toot_reaction .fav_button[favourited="true"],
  847. .toot_entry .toot_entry_body .toot_content .toot_reaction .fav_button[favourited="null"]:hover .reaction_count,
  848. .toot_entry .toot_entry_body .toot_content .toot_reaction .fav_button[favourited="true"] .reaction_count {
  849. color: #FFAD1A;
  850. }
  851. .media_views {
  852. margin: 8px 0;
  853. height: 336px;
  854. width: 100%;
  855. border-radius: 5px;
  856. overflow: hidden;
  857. position: relative;
  858. box-sizing: border-box;
  859. border: 1px solid #DCDFE1;
  860. }
  861. .media_views .media_attachment {
  862. overflow: hidden;
  863. width: 100%;
  864. height: 100%;
  865. }
  866. .media_views .media_attachment > * {
  867. width: 100%;
  868. height: 100%;
  869. object-fit: cover;
  870. }
  871. .media_views .media_attachment > iframe {
  872. object-fit: fill;
  873. }
  874. .media_views.sensitive .sensitive_alart {
  875. display: flex;
  876. z-index: 1;
  877. flex-direction: column;
  878. justify-content: center;
  879. align-items: center;
  880. position: absolute;
  881. width: 100%;
  882. height: 100%;
  883. background-color: #000;
  884. }
  885. .media_views.sensitive .sensitive_alart .text1 {
  886. font-size: 26px;
  887. font-weight: 200;
  888. padding: 8px 16px;
  889. color: #fff;
  890. }
  891. .media_views.sensitive .sensitive_alart .text2 {
  892. font-weight: 200;
  893. padding: 2px 4px;
  894. margin-top: 3px;
  895. color: #fff;
  896. }
  897. .media_views[media_length="2"] {
  898. display: flex;
  899. }
  900. .media_views[media_length="2"] .media_attachment {
  901. flex-grow: 1;
  902. overflow: hidden;
  903. width: 50%;
  904. height: 100%;
  905. }
  906. .media_views[media_length="2"] .media_attachment[mediacount="0"] {
  907. padding-right: 5px;
  908. box-sizing: border-box;
  909. }
  910. .media_views[media_length="3"],
  911. .media_views[media_length="4"] {
  912. display: flex;
  913. }
  914. .media_views[media_length="3"] .media_attachment[mediacount="0"],
  915. .media_views[media_length="4"] .media_attachment[mediacount="0"] {
  916. flex-grow: 2;
  917. padding-right: 5px;
  918. box-sizing: border-box;
  919. }
  920. .media_views[media_length="3"] .media_attachments_right,
  921. .media_views[media_length="4"] .media_attachments_right {
  922. flex-grow: 1;
  923. flex-shrink: 2;
  924. display: flex;
  925. flex-direction: column;
  926. height: 100%;
  927. }
  928. .media_views[media_length="3"] .media_attachments_right .media_attachment {
  929. padding-bottom: 5px;
  930. box-sizing: border-box;
  931. height: 50%;
  932. }
  933. .media_views[media_length="3"] .media_attachments_right .media_attachment[mediacount="2"] {
  934. padding-bottom: 0;
  935. }
  936. .media_views[media_length="4"] .media_attachments_right .media_attachment {
  937. padding-bottom: 5px;
  938. box-sizing: border-box;
  939. height: calc( 100% / 3 );
  940. }
  941. .media_views[media_length="4"] .media_attachments_right .media_attachment[mediacount="3"] {
  942. padding-bottom: 0;
  943. }
  944. .timeline .notice_entry {
  945. padding: 10px 12px 10px 70px;
  946. font-size: 14px;
  947. line-height: 18px;
  948. border-bottom: 1px solid #E6ECF0;
  949. }
  950. .timeline .notice_entry .notice_entry_body {
  951. width: 480px;
  952. border: 1px solid #E6ECF0;
  953. border-radius: 5px;
  954. padding: 8px 12px;
  955. }
  956. .timeline .notice_entry .notice_entry_body .toot_header {
  957. height: 17px;
  958. }
  959. .timeline .notice_entry .notice_entry_body .toot_article p {
  960. white-space: nowrap;
  961. overflow: hidden;
  962. text-overflow: ellipsis;
  963. }
  964. .timeline .notice_entry .icon_box {
  965. width: 24px;
  966. height: 24px;
  967. border-radius: 3px;
  968. overflow: hidden;
  969. }
  970. .timeline .notice_entry .icon_box img {
  971. width: 24px;
  972. }
  973. .timeline .notice_entry .font-icon {
  974. position: relative;
  975. padding: 3px;
  976. left: -23px;
  977. top: -26px;
  978. width: 10px;
  979. font-size: 10px;
  980. border-radius: 3px;
  981. color: #fff;
  982. }
  983. .timeline .notice_entry .font-icon.follow {
  984. background: #1DA1F2;;
  985. }
  986. .timeline .notice_entry .font-icon.boost {
  987. background: #17BF63;
  988. }
  989. .timeline .notice_entry .font-icon.favourite {
  990. background: #FFAD1A;
  991. }
  992. .timeline .notice_entry .notice_author_box {
  993. padding: 3px 0;
  994. }
  995. .timeline .notice_entry .notice_author_box > a.notice_author {
  996. margin-left: -18px;
  997. }
  998. .timeline .notice_entry .notice_author_box > a.notice_author span {
  999. font-weight: 600;
  1000. }
  1001. .timeline .notice_entry .toot_content .toot_header a .displayname {
  1002. font-weight: 600;
  1003. }
  1004. .timeline .notice_entry .toot_content .toot_header a .username {
  1005. color: #66757F;
  1006. }
  1007. .timeline_footer {
  1008. padding: 24px;
  1009. background-color: #fff;
  1010. box-sizing: border-box;
  1011. border: 1px solid #ECF1F4;
  1012. border-top: none;
  1013. border-bottom-right-radius: 5px;
  1014. border-bottom-left-radius: 5px;
  1015. color: #AAB8C2;
  1016. font-size: 36px;
  1017. text-align: center;
  1018. }
  1019. #js-follows_profile{
  1020. display: flex;
  1021. width: 900px;
  1022. box-sizing: border-box;
  1023. height: auto;
  1024. flex-wrap: wrap;
  1025. }
  1026. #js-follows_profile .follows_profile_box {
  1027. width: 290px;
  1028. margin: 0 5px;
  1029. margin-bottom: 10px;
  1030. box-sizing: border-box;
  1031. border-radius: 5px;
  1032. background-color: #fff;
  1033. overflow: hidden;
  1034. border: 1px solid #E6ECF0;
  1035. }
  1036. #js-follows_profile .follows_profile_box .follows_profile_header {
  1037. height: 96px;
  1038. overflow: hidden;
  1039. background-color: #189EFC;
  1040. }
  1041. #js-follows_profile .follows_profile_box .follows_profile_header img {
  1042. width: 100%;
  1043. height: 100%;
  1044. object-fit: cover;
  1045. }
  1046. #js-follows_profile .follows_profile_box .follows_profile {
  1047. position: relative;
  1048. }
  1049. #js-follows_profile .follows_profile_box .follows_profile .follows_profile_icon {
  1050. position: absolute;
  1051. width: 74px;
  1052. height: 74px;
  1053. padding: 3px;
  1054. margin-left: 16px;
  1055. border-radius: 8px;
  1056. top: -76px;
  1057. background-color: #fff;
  1058. }
  1059. #js-follows_profile .follows_profile_box .follows_profile .follows_profile_icon img {
  1060. border-radius: 5px;
  1061. }
  1062. #js-follows_profile .follows_profile_box .follows_profile .follows_profile_name_box {
  1063. width: auto;
  1064. /*! margin-left: 15px; */
  1065. padding-bottom: 2px;
  1066. padding-top: 4px;
  1067. margin: 0 16px;
  1068. margin-top: 36px;
  1069. }
  1070. #js-follows_profile .follows_profile_box .follows_profile .follows_profile_name_box h2 {
  1071. font-weight: 700;
  1072. font-size: 18px;
  1073. line-height: 25px;
  1074. }
  1075. #js-follows_profile .follows_profile_box .follows_profile .follows_profile_name_box span {
  1076. display: block;
  1077. width: 180px;
  1078. color: #657786;
  1079. font-size: 14px;
  1080. /*! overflow: hidden; */
  1081. white-space: nowrap;
  1082. text-overflow: ellipsis;
  1083. margin: 4px 0;
  1084. }
  1085. #js-follows_profile .follows_profile_box .follows_profile .follows_profile_name_box span::before {
  1086. }
  1087. #js-follows_profile .follows_profile_box .follows_profile .follows_profile_bio {
  1088. height: 58px;
  1089. font-size: 14px;
  1090. font-weight: 400;
  1091. color: #66757f;
  1092. margin: 0 16px;
  1093. margin-bottom: 0px;
  1094. margin-bottom: 16px;
  1095. line-height: 1.3;
  1096. overflow: hidden;
  1097. /*! width: 100%; */
  1098. }
  1099. #js-follows_profile .follows_profile_box .follows_profile .follows_profile_bio p {
  1100. /*! white-space: nowrap; */
  1101. overflow: hidden;
  1102. word-break: break-all;
  1103. height: auto;
  1104. /*! max-width: 100%; */
  1105. }
  1106. #js-follows_profile .follows_profile_box .follows_profile .follows_profile_bio p a {
  1107. color: #189EFC
  1108. }
  1109. #js-follows_profile .follow_button {
  1110. display: flex;
  1111. flex-wrap: nowrap;
  1112. align-items: center;
  1113. font-size: 13px;
  1114. padding: 6px 18px;
  1115. margin-top: 4px;
  1116. border-radius: 4px;
  1117. border: 1px solid #189EFC;
  1118. position: absolute;
  1119. right: 16px;
  1120. top: -32px;
  1121. }
  1122. #js-follows_profile .follow_button i {
  1123. color: #189EFC;
  1124. margin-right: 4px;
  1125. }
  1126. #js-follows_profile .follow_button span {
  1127. font-weight: 600;
  1128. }
  1129. #js-follows_profile .follow_button:hover,
  1130. #js-follows_profile .follow_button:hover i {
  1131. background-color: #189EFC;
  1132. color: #fff!important;
  1133. }
  1134. #js-follows_profile .following_button {
  1135. display: flex;
  1136. flex-wrap: nowrap;
  1137. align-items: center;
  1138. font-size: 13px;
  1139. padding: 6px 18px;
  1140. margin-top: 4px;
  1141. border-radius: 4px;
  1142. border: 1px solid #2B94DA;
  1143. background-color: #189EFC;
  1144. position: absolute;
  1145. right: 16px;
  1146. top: -32px;
  1147. }
  1148. #js-follows_profile .following_button i {
  1149. color: #fff;
  1150. margin-right: 4px;
  1151. }
  1152. #js-follows_profile .following_button span {
  1153. font-weight: 600;
  1154. color: #fff;
  1155. }
  1156. #js-follows_profile .following_button:hover,
  1157. #js-follows_profile .following_button:hover i {
  1158. background-color: #E20055;
  1159. color: #fff!important;
  1160. }
  1161. #js-follows_footer {
  1162. color: #66757F;
  1163. font-size: 36px;
  1164. text-align: center;
  1165. padding: 16px;
  1166. }
  1167. #js-stream_update {
  1168. height: 0;
  1169. padding: 0px;
  1170. box-sizing: border-box;
  1171. text-align: center;
  1172. font-size: 13px;
  1173. background-color: #F5F8FA;
  1174. overflow: hidden;
  1175. transition: 0.3s;
  1176. cursor: pointer;
  1177. }
  1178. #js-stream_update:hover {
  1179. background-color: #E6ECF0;
  1180. }
  1181. #js-stream_update button {
  1182. color: #189EFC;
  1183. }
  1184. .current_profile_box {
  1185. margin-bottom: 10px;
  1186. border-radius: 5px;
  1187. background-color: #fff;
  1188. overflow: hidden;
  1189. border: 1px solid #E6ECF0;
  1190. }
  1191. .current_profile_box .current_profile_header {
  1192. height: 96px;
  1193. overflow: hidden;
  1194. background-color: #189EFC;
  1195. }
  1196. .current_profile_box .current_profile_header img {
  1197. width: 100%;
  1198. height: 100%;
  1199. object-fit: cover;
  1200. }
  1201. .current_profile_box .current_profile {
  1202. position: relative;
  1203. }
  1204. .current_profile_box .current_profile .current_profile_icon {
  1205. position: absolute;
  1206. width: 70px;
  1207. height: 70px;
  1208. padding: 3px;
  1209. margin-left: 8px;
  1210. border-radius: 8px;
  1211. top: -30px;
  1212. background-color: #fff;
  1213. }
  1214. .current_profile_box .current_profile .current_profile_icon img {
  1215. border-radius: 5px;
  1216. }
  1217. .current_profile_box .current_profile .current_profile_name_box {
  1218. width: 180px;
  1219. margin-left: 90px;
  1220. padding-bottom: 10px;
  1221. padding-top: 8px;
  1222. }
  1223. .current_profile_box .current_profile .current_profile_name_box h2 {
  1224. font-weight: 700;
  1225. font-size: 18px;
  1226. line-height: 25px;
  1227. }
  1228. .current_profile_box .current_profile .current_profile_name_box span {
  1229. display: block;
  1230. width: 180px;
  1231. color: #657786;
  1232. font-size: 14px;
  1233. overflow: hidden;
  1234. white-space: nowrap;
  1235. text-overflow: ellipsis;
  1236. }
  1237. .current_profile_box .current_profile .current_profile_name_box span::before {
  1238. content: "@";
  1239. }
  1240. .current_profile_box .current_profile .current_profile_counts {
  1241. display: flex;
  1242. }
  1243. .current_profile_box .current_profile .current_profile_counts .current_profile_count {
  1244. flex-grow: 1;
  1245. padding-left: 16px;
  1246. padding-bottom: 8px;
  1247. }
  1248. .current_profile_box .current_profile .current_profile_counts .current_profile_count a {
  1249. display: flex;
  1250. flex-direction: column;
  1251. justify-content: space-around;
  1252. text-decoration: none;
  1253. }
  1254. .current_profile_box .current_profile .current_profile_counts .current_profile_count a .title {
  1255. color: #657786;
  1256. font-size: 10px;
  1257. }
  1258. .current_profile_box .current_profile .current_profile_counts .current_profile_count a:hover .title {
  1259. color: #189EFC;
  1260. }
  1261. .current_profile_box .current_profile .current_profile_counts .current_profile_count a .count {
  1262. font-size: 18px;
  1263. font-weight: 400;
  1264. padding-top: 3px;
  1265. color: #189EFC;
  1266. }
  1267. .side_widget {
  1268. padding: 15px;
  1269. margin-bottom: 8px;
  1270. border-radius: 5px;
  1271. background-color: #fff;
  1272. border: 1px solid #E6ECF0;
  1273. }
  1274. .side_widgets_footer {
  1275. color: rgb(101, 119, 134);
  1276. font-size: 12px;
  1277. padding: 16px 8px;
  1278. }
  1279. .side_widgets_footer ul li {
  1280. display: inline-block;
  1281. margin: 0 12px 8px 0;
  1282. }
  1283. .side_widget h2 {
  1284. color: #66757F;
  1285. font-size: 18px;
  1286. font-weight: 300;
  1287. margin-bottom: 15px;
  1288. }
  1289. .side_widget h3 {
  1290. color: #66757F;
  1291. font-size: 16px;
  1292. font-weight: 300;
  1293. }
  1294. .side_widget.with_button .form_title{
  1295. display: flex;
  1296. align-items: baseline;
  1297. }
  1298. .side_widget.with_button .form_title h2 {
  1299. flex-grow: 1;
  1300. }
  1301. .side_widget.with_button .form_title .headerbtn {
  1302. cursor: pointer;
  1303. flex-grow: 1;
  1304. font-size: 12px;
  1305. color: #189EFC;
  1306. text-align: right;
  1307. text-decoration:none;
  1308. }
  1309. .side_widget form.pulldown_form {
  1310. overflow: hidden;
  1311. height: 0;
  1312. opacity: 0;
  1313. margin-top: 0px;
  1314. transition: 0.13s ease-out;
  1315. }
  1316. .side_widget form.pulldown_form.view {
  1317. height: auto;
  1318. opacity: 1;
  1319. margin-top: 16px;
  1320. transition: 0.13s ease-out;
  1321. }
  1322. .textfield {
  1323. margin: 10px;
  1324. padding-left:5px;
  1325. width: 75%;
  1326. font-size: 14px;
  1327. color: #66757F;
  1328. box-sizing: border-box;
  1329. height:30px;
  1330. border:1px solid #AAB8C2;
  1331. border-radius:2px;
  1332. background-color:transparent;
  1333. outline:0;
  1334. }
  1335. .textfield:focus {
  1336. outline:0;
  1337. border:1px solid #189EFC;
  1338. background-color:transparent;
  1339. }
  1340. .side_widget .account_box {
  1341. display: flex;
  1342. flex-wrap: nowrap;
  1343. align-items: center;
  1344. height: 100%;
  1345. margin-bottom: 12px;
  1346. }
  1347. .side_widget .account_box .icon_box {
  1348. width: 48px;
  1349. height: 48px;
  1350. overflow: hidden;
  1351. margin-right: 8px;
  1352. border-radius: 5px;
  1353. }
  1354. .side_widget .account_box .label_box {
  1355. width: 200px;
  1356. }
  1357. .side_widget .account_box .label_box h3 {
  1358. overflow: hidden;
  1359. white-space: nowrap;
  1360. text-overflow: ellipsis;
  1361. color: #333;
  1362. }
  1363. .side_widget .account_box .label_box h3 .dn {
  1364. font-size: 14px;
  1365. font-weight: 700;
  1366. }
  1367. .side_widget .account_box .label_box h3 .un {
  1368. font-size: 14px;
  1369. color: #66757F;
  1370. }
  1371. .side_widget .account_box .label_box .follow_button {
  1372. display: flex;
  1373. flex-wrap: nowrap;
  1374. align-items: center;
  1375. font-size: 12px;
  1376. padding: 5px 16px;
  1377. margin-top: 4px;
  1378. border-radius: 4px;
  1379. }
  1380. .side_widget .account_box .label_box .follow_button i {
  1381. color: #189EFC;
  1382. margin-right: 4px;
  1383. }
  1384. .side_widget .account_box .label_box .follow_button span {
  1385. font-weight: 600;
  1386. }
  1387. .side_widget .account_box .label_box .follow_button:hover,
  1388. .side_widget .account_box .label_box .follow_button:hover i {
  1389. background-color: #189EFC;
  1390. color: #fff!important;
  1391. }
  1392. .halcyon_button {
  1393. display: flex;
  1394. flex-wrap: nowrap;
  1395. align-items: center;
  1396. font-size: 12px;
  1397. padding: 5px 16px;
  1398. margin-top: 4px;
  1399. border-radius: 4px;
  1400. }
  1401. .halcyon_button i {
  1402. color: #189EFC;
  1403. margin-right: 4px;
  1404. }
  1405. .halcyon_button span {
  1406. font-weight: 600;
  1407. }
  1408. .halcyon_button:hover,
  1409. .halcyon_button:hover i {
  1410. background-color: #189EFC;
  1411. color: #fff!important;
  1412. }
  1413. .side_widget .account_box .label_box .following_button {
  1414. display: flex;
  1415. color: #fff;
  1416. flex-wrap: nowrap;
  1417. align-items: center;
  1418. font-size: 12px;
  1419. padding: 5px 18px;
  1420. margin-top: 4px;
  1421. border-radius: 4px;
  1422. background-color: #189EFC;
  1423. border: 1px solid #189EFC;
  1424. }
  1425. .side_widget .account_box .label_box .following_button:hover {
  1426. background-color: #E20055;
  1427. }
  1428. .side_widget .account_box .label_box .following_button i {
  1429. color: #FFF;
  1430. margin-right: 4px;
  1431. }
  1432. .side_widget .account_box .label_box .following_button span {
  1433. font-weight: 600;
  1434. }
  1435. #header {
  1436. display: flex;
  1437. position: fixed;
  1438. z-index: 999;
  1439. width: 100%;
  1440. height: 47px;
  1441. color: #66757F;
  1442. background-color: #fff;
  1443. box-shadow: 0 1px 1px rgba(0,0,0,0.26);
  1444. }
  1445. #header .header_nav_wrap {
  1446. box-sizing: border-box;
  1447. display: flex;
  1448. width: 1190px;
  1449. height: 100%;
  1450. margin: auto;
  1451. padding: 0 5px;
  1452. }
  1453. #header .header_nav_wrap .header_left_box {
  1454. display: flex;
  1455. justify-content: flex-start;
  1456. flex: 2;
  1457. height: 100%;
  1458. }
  1459. #header .header_nav_wrap .header_left_box ul.header_nav_list {
  1460. display: flex;
  1461. width: 100%;
  1462. height: 100%;
  1463. }
  1464. #header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item {
  1465. display: flex;
  1466. align-items: center;
  1467. height: 100%;
  1468. position: relative;
  1469. }
  1470. #header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item .nav_badge {
  1471. width: 6px;
  1472. height: 6px;
  1473. background-color: #1B95E0;
  1474. border-radius: 50%;
  1475. position: absolute;
  1476. left: 6px;
  1477. top: 8px;
  1478. }
  1479. #header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item .nav_badge.notification_badge {
  1480. position: absolute;
  1481. background-color: #189EFC;
  1482. border-radius: 40%;
  1483. font-size: 10px;
  1484. top: 8px;
  1485. left: 20px;
  1486. border: 2px solid #fff;
  1487. color: #fff;
  1488. padding: 2px;
  1489. box-sizing: border-box;
  1490. height: 20px;
  1491. width: 20px;
  1492. display: flex;
  1493. align-items: center;
  1494. justify-content: center;
  1495. }
  1496. #header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a {
  1497. display: flex;
  1498. justify-content: center;
  1499. align-items: center;
  1500. width: 100%;
  1501. height: 100%;
  1502. color: #66757F;
  1503. box-sizing: border-box;
  1504. padding-right: 18px;
  1505. padding-left: 9px;
  1506. border-top: 0px solid transparent;
  1507. border-bottom: 0px solid #189EFC;
  1508. transition: 0.15s ease-out;
  1509. }
  1510. #header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a:hover {
  1511. color: #189EFC;
  1512. text-decoration: none;
  1513. border-top: 5px solid transparent;
  1514. border-bottom: 5px solid #189EFC;
  1515. transition: 0.15s ease-out;
  1516. }
  1517. #header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a.view {
  1518. text-decoration: none;
  1519. border-top: 5px solid transparent;
  1520. border-bottom: 5px solid #189EFC;
  1521. transition: 0.15s ease-out;
  1522. position: relative;
  1523. }
  1524. #header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a > i,
  1525. #header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a > span {
  1526. display: inline-block;
  1527. text-align: center;
  1528. }
  1529. #header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a > i {
  1530. margin-right: 4px;
  1531. font-size: 21px;
  1532. }
  1533. #header .header_nav_wrap .header_left_box ul.header_nav_list li.header_nav_item a > span {
  1534. font-size: 13px;
  1535. font-weight: 400;
  1536. }
  1537. #header .header_nav_wrap .header_center_box {
  1538. display: flex;
  1539. flex: 1.2;
  1540. height: 100%;
  1541. box-sizing: border-box;
  1542. padding: 8px 0;
  1543. align-items: center;
  1544. justify-content: center;
  1545. }
  1546. #header .logo_box {
  1547. height: 96%;
  1548. padding: 4px;
  1549. box-sizing: border-box;
  1550. }
  1551. #header .logo_box img {
  1552. width: auto;
  1553. display: block;
  1554. }
  1555. #header .header_nav_wrap .header_right_box {
  1556. flex: 2;
  1557. box-sizing: border-box;
  1558. padding: 8px 0;
  1559. height: 100%;
  1560. }
  1561. #header .header_nav_wrap .header_right_box ul.header_nav_list {
  1562. display: flex;
  1563. justify-content: flex-end;
  1564. align-items: center;
  1565. width: 100%;
  1566. height: 100%;
  1567. }
  1568. #header .header_nav_wrap .header_right_box ul.header_nav_list li.header_nav_item {
  1569. display: flex;
  1570. height: 100%;
  1571. justify-content: center;
  1572. align-items: center;
  1573. padding-right: 16px;
  1574. }
  1575. #header .header_nav_wrap .header_right_box .search_form {
  1576. width: 221px;
  1577. height: 95%;
  1578. outline: 0;
  1579. position: relative;
  1580. }
  1581. #header .header_nav_wrap .header_right_box .search_form .search_form_input {
  1582. box-sizing: border-box;
  1583. padding: 5px 12px;
  1584. font-size: 12px;
  1585. width: 100%;
  1586. border-radius: 16px;
  1587. border: 1px solid #E8EEF1;
  1588. background-color: #F5F8FA;
  1589. height: 100%;
  1590. transition: 0.15s ease-out;
  1591. }
  1592. #header .header_nav_wrap .header_right_box .search_form .search_form_input:focus {
  1593. background-color: transparent;
  1594. transition: 0.15s ease-out;
  1595. outline:0;
  1596. border:2px solid #189EFC;
  1597. }
  1598. #header .header_nav_wrap .header_right_box .search_form .search_form_submit {
  1599. display: block;
  1600. position: absolute;
  1601. height: 14px;
  1602. font-size: 14px;
  1603. top: 5px;
  1604. right: 12px;
  1605. margin: 2px -4px;
  1606. }
  1607. #header .header_nav_wrap .header_right_box .search_form .search_form_submit button,
  1608. #header .header_nav_wrap .header_right_box .search_form .search_form_submit i {
  1609. display: block;
  1610. color: #66757F;
  1611. }
  1612. #header .header_nav_wrap .header_right_box .my_account_wrap {
  1613. position: relative;
  1614. }
  1615. #header .header_nav_wrap .header_right_box .my_account_wrap .my_account {
  1616. height: 35px;
  1617. width: 35px;
  1618. margin: auto;
  1619. display: flex;
  1620. justify-content: center;
  1621. align-items: center;
  1622. }
  1623. #header .header_nav_wrap .header_right_box .my_account_wrap .my_account img {
  1624. width: 32px;
  1625. height: 32px;
  1626. overflow: hidden;
  1627. border-radius: 50%;
  1628. transition: 0.15s ease-out;
  1629. }
  1630. #header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav {
  1631. display: block;
  1632. position: absolute;
  1633. cursor: pointer;
  1634. top: 42px;
  1635. right: 14px;
  1636. width: 180px;
  1637. padding: 8px 21px;
  1638. font-size: 12px;
  1639. border-radius: 3px;
  1640. box-sizing: border-box;
  1641. background-color: #fff;
  1642. box-shadow: 0.5px 0.5px 3px rgba(0,0,0,0.26);
  1643. }
  1644. #header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav::before {
  1645. display: block;
  1646. content: "";
  1647. z-index: -1;
  1648. width: 20px;
  1649. height: 20px;
  1650. position: absolute;
  1651. transform: rotate(45deg);
  1652. top: -5px;
  1653. right: 8px;
  1654. background-color: #fff;
  1655. border: 0.5px solid rgba(0,0,0,.26);
  1656. }
  1657. #header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul {
  1658. margin: 0 -21px;
  1659. margin-bottom: 8px;
  1660. }
  1661. #header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul::after {
  1662. content: "";
  1663. display: block;
  1664. margin-top: 8px;
  1665. border-bottom: 1px solid #E6ECF0;
  1666. }
  1667. #header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul:last-child::after {
  1668. border-bottom: 0px solid #E6ECF0;
  1669. }
  1670. #header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul li {
  1671. box-sizing: border-box;
  1672. }
  1673. #header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul li a .display_name {
  1674. display: block;
  1675. color: #000;
  1676. font-size: 14px;
  1677. font-weight: 600;
  1678. margin-bottom: 4px;
  1679. }
  1680. #header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav a {
  1681. display: block;
  1682. padding: 8px 21px;
  1683. }
  1684. #header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav a:hover,
  1685. #header .header_nav_wrap .header_right_box .my_account_wrap .header_my_account_nav ul li a:hover .display_name {
  1686. background-color: #189EFC;
  1687. text-decoration: none;
  1688. color: #fff;
  1689. }
  1690. #header .header_nav_wrap .header_right_box .toot_button {
  1691. width: 90px;
  1692. height: 100%;
  1693. border-radius: 4px;
  1694. color: #fff;
  1695. background-color: #2588D0;
  1696. transition: 0.15s ease-out;;
  1697. }
  1698. #header .header_nav_wrap .header_right_box .toot_button:hover {
  1699. background-color: #2571D0;
  1700. transition: 0.15s ease-out;;
  1701. }
  1702. #header .header_nav_wrap .header_right_box .toot_button:active {
  1703. background-color: #255ED0;
  1704. transition: 0.15s ease-out;;
  1705. }
  1706. #header .header_nav_wrap .header_right_box .toot_button .toot_button_label {
  1707. display: flex;
  1708. justify-content: center;
  1709. align-items: center;
  1710. }
  1711. #header .header_nav_wrap .header_right_box .toot_button i {
  1712. display: inline-block;
  1713. font-size: 21px;
  1714. margin-right: 2px;
  1715. }
  1716. #header .header_nav_wrap .header_right_box .toot_button span {
  1717. font-size: 13px;
  1718. font-weight: 500;
  1719. }
  1720. #main {
  1721. padding-top: 47px;
  1722. }
  1723. #main > .header_image_box {
  1724. width: 100%;
  1725. height: 460px;
  1726. overflow: hidden;
  1727. }
  1728. #main > .header_image_box img {
  1729. min-width: 100%;
  1730. object-fit: cover;
  1731. }
  1732. #main .profile_nav_wrap {
  1733. height: 60px;
  1734. width: 100%;
  1735. background-color: #fff;
  1736. box-shadow: 0 1px 3px 0 rgba(0,0,0,0.25);
  1737. }
  1738. #main .profile_nav_wrap .profile_nav {
  1739. display: flex;
  1740. flex-wrap: nowrap;
  1741. width: 1200px;
  1742. height: 100%;
  1743. margin: auto;
  1744. padding: 0 5px;
  1745. box-sizing: border-box;
  1746. }
  1747. #main .profile_nav_wrap .profile_nav .profile_nav_left {
  1748. width: 300px;
  1749. height: 100%;
  1750. }
  1751. #main .profile_nav_wrap .profile_nav .profile_nav_right {
  1752. width: 900px;
  1753. height: 100%;
  1754. }
  1755. #main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list {
  1756. display: flex;
  1757. flex-wrap: nowrap;
  1758. align-items: center;
  1759. height: 100%;
  1760. }
  1761. #main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item {
  1762. height: 100%;
  1763. color: #66757F;
  1764. border-color: transparent;
  1765. }
  1766. #main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item a {
  1767. display: flex;
  1768. flex-direction: column;
  1769. flex-wrap: nowrap;
  1770. align-items: center;
  1771. justify-content: center;
  1772. height: 100%;
  1773. padding: 0 15px;
  1774. box-sizing: border-box;
  1775. border-top: 0px solid transparent;
  1776. border-bottom: 0px solid #189EFC;
  1777. transition: 0.15s;
  1778. }
  1779. #main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item:hover {
  1780. color: #189EFC;
  1781. box-sizing: border-box;
  1782. text-decoration: none;
  1783. border-top: 4px solid transparent;
  1784. border-bottom: 4px solid #189EFC;
  1785. transition: 0.15s;
  1786. }
  1787. #main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item.view {
  1788. color: #189EFC;
  1789. box-sizing: border-box;
  1790. border-top: 4px solid transparent;
  1791. border-bottom: 4px solid #189EFC;
  1792. }
  1793. #main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item a:hover {
  1794. text-decoration: none;
  1795. }
  1796. #main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item a h2 {
  1797. display: inline-block;
  1798. font-size: 11px;
  1799. font-weight: normal;
  1800. }
  1801. #main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_nav_item a span {
  1802. display: inline-block;
  1803. font-size: 18px;
  1804. font-weight: 600;
  1805. margin-top: 3px;
  1806. }
  1807. #main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_button_box {
  1808. display: flex;
  1809. align-items: center;
  1810. justify-content: flex-end;
  1811. flex: 1;
  1812. height: 100%;
  1813. }
  1814. #main .profile_nav_wrap .profile_nav .profile_nav_right .profile_nav_list .profile_button_box button {
  1815. float: right;
  1816. padding: 9px 16px;
  1817. border-radius: 4px;
  1818. font-size: 14px;
  1819. font-weight: 700;
  1820. }
  1821. #js-header_title_box {
  1822. width: 100%;
  1823. height: 64px;
  1824. padding: 16px 0;
  1825. overflow: hidden;
  1826. box-sizing: border-box;
  1827. background-color: #189EFC;
  1828. }
  1829. #js-header_title_box h1 {
  1830. display: block;
  1831. width: 1200px;
  1832. margin: 0 auto;
  1833. padding: 0 16px;
  1834. font-size: 27px;
  1835. font-weight: 400;
  1836. line-height: 32px;
  1837. color: #fff;
  1838. box-sizing: border-box;
  1839. }
  1840. #main .header_nav_wrap {
  1841. height: 50px;
  1842. width: 100%;
  1843. background-color: #fff;
  1844. box-shadow: 0 1px 3px 0 rgba(0,0,0,0.25);
  1845. margin-bottom: 4px;
  1846. }
  1847. #main .header_nav_wrap .header_nav {
  1848. display: flex;
  1849. flex-wrap: nowrap;
  1850. width: 1200px;
  1851. height: 100%;
  1852. margin: auto;
  1853. padding: 0 5px;
  1854. box-sizing: border-box;
  1855. }
  1856. #main .header_nav_wrap .header_nav .header_nav_left {
  1857. width: 900px;
  1858. height: 100%;
  1859. }
  1860. #main .header_nav_wrap .header_nav .header_nav_left .header_nav_list {
  1861. display: flex;
  1862. flex-wrap: nowrap;
  1863. align-items: center;
  1864. height: 100%;
  1865. }
  1866. #main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item {
  1867. height: 100%;
  1868. color: #66757F;
  1869. /*! font-size: 13px; */
  1870. }
  1871. #main .header_nav_wrap .header_nav_item.view a {
  1872. border-top: 4px solid transparent !important;
  1873. border-bottom: 4px solid #189EFC !important;
  1874. }
  1875. #main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item a {
  1876. display: flex;
  1877. flex-direction: column;
  1878. flex-wrap: nowrap;
  1879. align-items: center;
  1880. justify-content: center;
  1881. height: 100%;
  1882. padding: 0 15px;
  1883. box-sizing: border-box;
  1884. border-top: 0px solid transparent;
  1885. border-bottom: 0px solid #189EFC;
  1886. transition: 0.15s;
  1887. }
  1888. #main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item a:hover {
  1889. color: #189EFC;
  1890. text-decoration: none;
  1891. border-top: 4px solid transparent;
  1892. border-bottom: 4px solid #189EFC;
  1893. transition: 0.15s;
  1894. }
  1895. #main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item a.view {
  1896. color: #189EFC;
  1897. border-top: 4px solid transparent;
  1898. border-bottom: 4px solid #189EFC;
  1899. }
  1900. #main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item a h2 {
  1901. display: inline-block;
  1902. font-size: 14px;
  1903. font-weight: normal;
  1904. color: #189EFC;
  1905. }
  1906. #main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_nav_item a span {
  1907. display: inline-block;
  1908. font-size: 18px;
  1909. font-weight: 600;
  1910. margin-top: 3px;
  1911. }
  1912. #main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_button_box {
  1913. display: flex;
  1914. align-items: center;
  1915. justify-content: flex-end;
  1916. flex: 1;
  1917. height: 100%;
  1918. }
  1919. #main .header_nav_wrap .header_nav .header_nav_left .header_nav_list .header_button_box button {
  1920. float: right;
  1921. padding: 9px 16px;
  1922. border-radius: 4px;
  1923. font-size: 14px;
  1924. font-weight: 700;
  1925. }
  1926. #main .article_wrap {
  1927. display: flex;
  1928. flex-wrap: nowrap;
  1929. width: 1200px;
  1930. margin: auto;
  1931. }
  1932. #main .article_wrap .left_column {
  1933. position: relative;
  1934. width: 300px;
  1935. padding: 10px 5px;
  1936. box-sizing: border-box;
  1937. }
  1938. #main .article_wrap .left_column > .profile_icon_box {
  1939. position: absolute;
  1940. top: -185px;
  1941. width: 200px;
  1942. height: 200px;
  1943. margin-left: 10px;
  1944. padding: 5px;
  1945. background-color: #fff;
  1946. border-radius: 14px;
  1947. border: 1px solid #FBFBFC;
  1948. box-shadow: 0 0.1px 0.3px rgba(0,0,0,0.26);
  1949. cursor: pointer;
  1950. }
  1951. #main .article_wrap .left_column .profile_icon_box img {
  1952. width: 100%;
  1953. height: 100%;
  1954. border-radius: 8px;
  1955. }
  1956. #main .article_wrap .left_column .profile_section_wrap {
  1957. padding: 36px 16px 0 15px;
  1958. }
  1959. #main .article_wrap .left_column .profile_section_wrap > .profile_displayname {
  1960. font-size: 22px;
  1961. font-weight: 700;
  1962. line-height: normal;
  1963. color: rgb(20, 23, 26);
  1964. margin-bottom: 8px;
  1965. }
  1966. #main .article_wrap .left_column .profile_section_wrap > .profile_username {
  1967. color: rgb(101, 119, 134);
  1968. font-size: 14px;
  1969. font-weight: 300;
  1970. margin-bottom: 8px;
  1971. }
  1972. #main .article_wrap .left_column .profile_section_wrap > .profile_username .profile_followed_by {
  1973. font-size: 10px;
  1974. display: inline-block;
  1975. margin-left: 8px;
  1976. }
  1977. #main .article_wrap .left_column .profile_section_wrap > .profile_bio {
  1978. font-size: 14px;
  1979. font-weight: 400;
  1980. line-height: 20px;
  1981. margin-bottom: 10px;
  1982. word-wrap: break-word;
  1983. }
  1984. #main .article_wrap .left_column .profile_section_wrap > .profile_bio a {
  1985. color: #2588D0;
  1986. }
  1987. #js_profile_recent_images a {
  1988. color: #2588D0;
  1989. font-size: 13px;
  1990. font-weight: 300;
  1991. }
  1992. #js_profile_recent_images a i {
  1993. color: #657786;
  1994. margin-right: 8px;
  1995. font-size: 16px;
  1996. }
  1997. #js_profile_recent_images_box {
  1998. width: 100%;
  1999. font-size: 14px;
  2000. display: flex;
  2001. margin-top: 8px;
  2002. flex-wrap: wrap;
  2003. }
  2004. #js_profile_recent_images_box .profile_recent_images_item {
  2005. width: 80px;
  2006. height: 80px;
  2007. margin: 0 5px 5px 0;
  2008. border-radius: 5px;
  2009. overflow: hidden;
  2010. flex-shrink: 0;
  2011. cursor: pointer;
  2012. }
  2013. #js_profile_recent_images_box .profile_recent_images_item img {
  2014. width: 100%;
  2015. height: 100%;
  2016. max-width: none;
  2017. max-height: none;
  2018. object-fit: cover;
  2019. }
  2020. #main .article_wrap .center_column {
  2021. width: auto;
  2022. flex: 1;
  2023. padding: 10px 5px;
  2024. box-sizing: border-box;
  2025. }
  2026. #main .article_wrap .right_column {
  2027. width: 300px;
  2028. padding: 10px 5px;
  2029. box-sizing: border-box;
  2030. }
  2031. #js-overlay_content_wrap {
  2032. display: none;
  2033. position: fixed;
  2034. z-index: 1000;
  2035. top: 0;
  2036. left: 0;
  2037. width: 100%;
  2038. height: 100%;
  2039. overflow: scroll;
  2040. }
  2041. #js-overlay_content_wrap.view {
  2042. display: block;
  2043. background-color: rgba(0, 0, 0, 0);
  2044. transition: 0.5s;
  2045. }
  2046. @keyframes fadein_05 {
  2047. 0% { background-color: rgba(0, 0, 0, 0); }
  2048. 100% {background-color: rgba(0, 0, 0, 0.5);}
  2049. }
  2050. @keyframes fadein_08 {
  2051. 0% { background-color: rgba(0, 0, 0, 0); }
  2052. 100% {background-color: rgba(0, 0, 0, 0.8);}
  2053. }
  2054. #js-overlay_content_wrap.view.black_05 {
  2055. animation-name: fadein_05;
  2056. animation-duration: 0.35s;
  2057. animation-fill-mode: forwards;
  2058. }
  2059. #js-overlay_content_wrap.view.black_08 {
  2060. background-color: rgba(0, 0, 0, 0.8);
  2061. }
  2062. #js-overlay_content_wrap #js-overlay_content {
  2063. width: 628px;
  2064. height: auto;
  2065. margin: 56px auto;
  2066. position: relative;
  2067. margin-bottom: 300px;
  2068. }
  2069. #js-overlay_content_wrap #js-overlay_content .close_button {
  2070. color: #fff;
  2071. position: absolute;
  2072. right: -32px;
  2073. top: 0;
  2074. font-size: 28px;
  2075. }
  2076. #js-overlay_content_wrap .temporary_object .thumb_box {
  2077. display: flex;
  2078. align-items: center;
  2079. justify-content: center;
  2080. width: 100%;
  2081. height: 100%;
  2082. }
  2083. #overlay_message {
  2084. position: fixed;
  2085. top: -47px;
  2086. left: 0;
  2087. right: 0;
  2088. bottom: 0;
  2089. margin: 0 auto;
  2090. width: 658px;
  2091. height: 58px;
  2092. border-bottom-left-radius: 8px;
  2093. border-bottom-right-radius: 8px;
  2094. background-color: #fff;
  2095. box-shadow: 1px 1px 3px rgba(0,0,0,0.35);
  2096. z-index: 998;
  2097. }
  2098. @keyframes overlay_message_active {
  2099. 0% { top: -47px }
  2100. 10% { top: 47px; }
  2101. 85% { top: 47px; }
  2102. 100% { top: -47px }
  2103. }
  2104. #overlay_message.view {
  2105. animation-name: overlay_message_active;
  2106. animation-duration: 3s;
  2107. }
  2108. #overlay_message section {
  2109. color: #999;
  2110. font-size: 14px;
  2111. padding: 16px;
  2112. margin: auto;
  2113. display: block;
  2114. box-sizing: border-box;
  2115. height: 100%;
  2116. width: 100%;
  2117. display: flex;
  2118. justify-content: center;
  2119. align-items: center;
  2120. }
  2121. .toot_detail_wrap {
  2122. border-radius: 5px;
  2123. }
  2124. .toot_detail_wrap .toot_detail:first-child,
  2125. .toot_detail_wrap .toot_entry:first-child {
  2126. border-top-left-radius: 5px;
  2127. border-top-right-radius: 5px;
  2128. }
  2129. .toot_detail_wrap .toot_detail:last-child,
  2130. .toot_detail_wrap .toot_entry:last-child {
  2131. border-bottom-left-radius: 5px;
  2132. border-bottom-right-radius: 5px;
  2133. }
  2134. .toot_detail {
  2135. width: 628px;
  2136. box-sizing: border-box;
  2137. background-color: #fff;
  2138. }
  2139. .toot_entry.ancestors_status .toot_entry_body,
  2140. .toot_entry.descendants_status .toot_entry_body {
  2141. padding: 18px 40px;
  2142. border-bottom: none;
  2143. position: relative;
  2144. /*! padding-bottom: 8px; */
  2145. }
  2146. .toot_entry.ancestors_status.default_padding .toot_entry_body,
  2147. .toot_entry.descendants_status.default_padding .toot_entry_body {
  2148. padding: 12px;
  2149. }
  2150. .toot_entry.ancestors_status .toot_entry_body::after,
  2151. .toot_entry.descendants_status .toot_entry_body::after {
  2152. content: "";
  2153. display: block;
  2154. border: 2px solid #76BFEC;
  2155. position: absolute;
  2156. border-radius: 2px;
  2157. position: absolute;
  2158. left: 62px;
  2159. height: calc(100% - 57px);
  2160. top: 68px;
  2161. }
  2162. .toot_entry.ancestors_status.default_padding .toot_entry_body::after,
  2163. .toot_entry.descendants_status.default_padding .toot_entry_body::after {
  2164. left: 35px;
  2165. height: calc(100% - 60px);
  2166. top: 64px;
  2167. }
  2168. .toot_entry.descendants_status:last-child .toot_entry_body::after {
  2169. border: 0px solid #76BFEC;
  2170. }
  2171. .toot_detail .toot_header {
  2172. display: flex;
  2173. }
  2174. .toot_detail .toot_header .icon_box {
  2175. flex-shrink: 0;
  2176. width: 48px;
  2177. height: 48px;
  2178. border-radius: 3px;
  2179. overflow: hidden;
  2180. margin-right: 8px;
  2181. }
  2182. .toot_detail .toot_header a {
  2183. flex-grow: 1;
  2184. display: flex;
  2185. flex-direction: column;
  2186. justify-content: center;
  2187. }
  2188. .toot_detail .toot_header a .displayname {
  2189. color: #000;
  2190. font-size: 17px;
  2191. font-weight: 600;
  2192. line-height: 1.35;
  2193. }
  2194. .toot_detail .toot_header a .username {
  2195. color: #66757F;
  2196. font-size: 14px;
  2197. }
  2198. .toot_detail .toot_header a:hover {
  2199. text-decoration: none;
  2200. }
  2201. .toot_detail .toot_header a:hover .displayname {
  2202. color: #189EFC;
  2203. }
  2204. .toot_detail .toot_header .expand_button_wrap {
  2205. float: right;
  2206. position: relative;
  2207. width: 48px;
  2208. height: 48px;
  2209. }
  2210. .toot_detail .toot_header .expand_button_wrap .expand_button {
  2211. position: absolute;
  2212. right: 0;
  2213. top: 0;
  2214. color: #AAB8C2;
  2215. }
  2216. .toot_detail .toot_header .expand_button_wrap .expand_button:hover {
  2217. color: #189EFC;
  2218. }
  2219. .toot_detail .toot_header .expand_button_wrap .expand_menu {
  2220. display: block;
  2221. position: absolute;
  2222. cursor: pointer;
  2223. top: 36px;
  2224. right: -152px;
  2225. width: 180px;
  2226. padding: 8px 21px;
  2227. font-size: 12px;
  2228. border-radius: 3px;
  2229. box-sizing: border-box;
  2230. background-color: #fff;
  2231. box-shadow: 0.5px 0.5px 3px rgba(0,0,0,0.26);
  2232. z-index: 1;
  2233. }
  2234. .toot_detail .toot_header .expand_button_wrap .expand_menu::before {
  2235. display: block;
  2236. content: "";
  2237. z-index: -1;
  2238. width: 20px;
  2239. height: 20px;
  2240. position: absolute;
  2241. transform: rotate(45deg);
  2242. top: -5px;
  2243. left: 8px;
  2244. background-color: #fff;
  2245. }
  2246. .toot_detail .toot_header .expand_button_wrap .expand_menu ul {
  2247. margin: 0 -21px;
  2248. margin-bottom: 8px;
  2249. }
  2250. .toot_detail .toot_header .expand_button_wrap .expand_menu ul::after {
  2251. content: "";
  2252. display: block;
  2253. margin-top: 8px;
  2254. border-bottom: 1px solid #E6ECF0;
  2255. }
  2256. .toot_detail .toot_header .expand_button_wrap .expand_menu ul:last-child::after {
  2257. border-bottom: 0px solid #E6ECF0;
  2258. }
  2259. .toot_detail .toot_header .expand_button_wrap .expand_menu ul li {
  2260. box-sizing: border-box;
  2261. }
  2262. .toot_detail .toot_header .expand_button_wrap .expand_menu a {
  2263. display: block;
  2264. padding: 8px 21px;
  2265. }
  2266. .toot_detail .toot_header .expand_button_wrap .expand_menu a:hover {
  2267. background-color: #189EFC;
  2268. text-decoration: none;
  2269. color: #fff;
  2270. }
  2271. .toot_detail .toot_detail_body {
  2272. padding: 30px 40px;
  2273. /*! border-radius: 4px; */
  2274. }
  2275. .toot_detail .toot_content .toot_article {
  2276. font-size: 14px;
  2277. line-height: 20px;
  2278. margin: 16px auto;
  2279. }
  2280. .toot_detail.main_status .toot_content .toot_article {
  2281. font-size: 24px;
  2282. line-height: 1.35;
  2283. }
  2284. .toot_detail.main_status .toot_content .toot_article .cw_button {
  2285. background-color: #6D768C;
  2286. border-radius: 3px;
  2287. padding: 4px;
  2288. margin: auto 4px;
  2289. font-size: 12px;
  2290. box-sizing: border-box;
  2291. color: #fff;
  2292. }
  2293. .toot_detail.main_status .toot_content .toot_article.content_warning .status_content {
  2294. display: none;
  2295. }
  2296. .toot_detail.main_status .toot_content a {
  2297. color: #189EFC;
  2298. }
  2299. .toot_detail.main_status .toot_content time {
  2300. color: #66757F;
  2301. font-size: 13px;
  2302. font-weight: 300;
  2303. }
  2304. .toot_detail .toot_footer {
  2305. display: flex;
  2306. flex-wrap: nowrap;
  2307. align-items: center;
  2308. width: 230px;
  2309. height: 21px;
  2310. margin-top: 12px;
  2311. }
  2312. .toot_detail .toot_footer .toot_reaction {
  2313. height: 21px;
  2314. flex-grow: 1;
  2315. }
  2316. .toot_detail .toot_footer .toot_reaction button {
  2317. margin: auto;
  2318. color: #AAB8C2;
  2319. font-size: 18px;
  2320. height: 21px;
  2321. }
  2322. .toot_detail .toot_footer .toot_reaction button.active {
  2323. animation-name: status_action_active;
  2324. animation-duration: 0.5s;
  2325. }
  2326. .toot_detail .toot_footer .toot_reaction button .reaction_count {
  2327. color: #AAB8C2;
  2328. font-size: 12px;
  2329. font-weight: 600;
  2330. }
  2331. @keyframes status_action_active {
  2332. 0% { transform: scale(1); }
  2333. 50% { transform: scale(2); }
  2334. 100% { transform: scale(1); }
  2335. }
  2336. .toot_detail .toot_footer .toot_reaction .reply_button:hover {
  2337. color: #1DA1F2;
  2338. }
  2339. .toot_detail .toot_footer .toot_reaction .boost_button[reblogged="false"]:hover,
  2340. .toot_detail .toot_footer .toot_reaction .boost_button[reblogged="true"],
  2341. .toot_detail .toot_footer .toot_reaction .boost_button[reblogged="false"]:hover .reaction_count,
  2342. .toot_detail .toot_footer .toot_reaction .boost_button[reblogged="true"] .reaction_count {
  2343. color: #17BF63;
  2344. }
  2345. .toot_detail .toot_footer .toot_reaction .fav_button[favourited="false"]:hover,
  2346. .toot_detail .toot_footer .toot_reaction .fav_button[favourited="true"],
  2347. .toot_detail .toot_footer .toot_reaction .fav_button[favourited="false"]:hover .reaction_count,
  2348. .toot_detail .toot_footer .toot_reaction .fav_button[favourited="true"] .reaction_count {
  2349. color: #FFAD1A;
  2350. }
  2351. .toot_detail .status_form {
  2352. border-top: 1px solid #E6ECF0;
  2353. border-bottom: 1px solid #E6ECF0;
  2354. }
  2355. .media_detail {
  2356. max-height: 100%;
  2357. }
  2358. .media_detail .media_box {
  2359. background-color: #000;
  2360. border-top-right-radius: 5px;
  2361. border-top-left-radius: 5px;
  2362. overflow: hidden;
  2363. text-align: center;
  2364. }
  2365. .media_detail .toot_entry {
  2366. border-bottom-right-radius: 5px;
  2367. border-bottom-left-radius: 5px;
  2368. }
  2369. .media_detail .toot_entry .toot_entry_body {
  2370. border-bottom: none;
  2371. }
  2372. .media_detail .toot_entry .media_views {
  2373. display: none;
  2374. }
  2375. .switch {
  2376. width:60px;
  2377. height:30px;
  2378. margin:10px;
  2379. }
  2380. .switch input {
  2381. width: 60px;
  2382. height: 30px;
  2383. position: absolute;
  2384. filter: alpha(opacity=0);
  2385. opacity: 0;
  2386. outline: none;
  2387. z-index: 9;
  2388. }
  2389. .switch input:hover {
  2390. cursor: pointer;
  2391. }
  2392. .switch-btn {
  2393. background: #AAB8C2;
  2394. width: 100%;
  2395. height: 100%;
  2396. border-radius: 20px;
  2397. position: relative;
  2398. }
  2399. .switch-btn span {
  2400. background: #fff;
  2401. width: 26px;
  2402. height: 26px;
  2403. display: block;
  2404. border-radius: 50%;
  2405. position: absolute;
  2406. top: 2px;
  2407. left: 2px;
  2408. -webkit-transition: all .5s;
  2409. -moz-transition: all .5s;
  2410. -o-transition: all .5s;
  2411. transition: all .5s;
  2412. }
  2413. .switch input:checked + .switch-btn span {
  2414. left: 32px;
  2415. }
  2416. .switch input:checked + .switch-btn {
  2417. background: #189EFC;
  2418. }
  2419. .radiobox {
  2420. margin: 10px;
  2421. }
  2422. .radiobox input[type="radio"] {
  2423. position: absolute;
  2424. opacity: 0;
  2425. }
  2426. .radiobox input[type="radio"] + .radiotext:before {
  2427. content: '';
  2428. background: #ffffff;
  2429. border-radius: 100%;
  2430. border: 1px solid #AAB8C2;
  2431. display: inline-block;
  2432. width: 30px;
  2433. height: 30px;
  2434. margin-right: 3px;
  2435. vertical-align: top;
  2436. cursor: pointer;
  2437. text-align: center;
  2438. transition: all 250ms ease;
  2439. position: relative;
  2440. top: -8px;
  2441. }
  2442. .radiobox input[type="radio"]:checked + .radiotext:before {
  2443. background-color: #189EFC;
  2444. box-shadow: inset 0 0 0 4px #ffffff;
  2445. outline: none;
  2446. border-color: #189EFC;
  2447. }
  2448. .uploadbtn:before {
  2449. position:absolute;
  2450. left:0;
  2451. right:0;
  2452. text-align:center;
  2453. font-size:12px;
  2454. font-weight:600;
  2455. content:"Select file and upload";
  2456. }
  2457. .s-hidden {
  2458. display:none;
  2459. }
  2460. .select {
  2461. cursor:pointer;
  2462. display:inline-block;
  2463. position:relative;
  2464. width:calc(75% - 2px);
  2465. }
  2466. .styledselect {
  2467. width:100%;
  2468. margin:10px;
  2469. padding:0;
  2470. height:28px;
  2471. position:relative;
  2472. text-align:center;
  2473. font-weight:bold;
  2474. }
  2475. .styledselect.active {
  2476. border-bottom-left-radius:0;
  2477. border-bottom-right-radius:0;
  2478. }
  2479. .options {
  2480. display:none;
  2481. position:absolute;
  2482. top:100%;
  2483. right:0;
  2484. left:0;
  2485. z-index:999;
  2486. margin:-10px -12px 0 10px !important;
  2487. padding:0 0;
  2488. list-style:none;
  2489. border:1px solid #189EFC;
  2490. border-top-width:0;
  2491. background-color:white;
  2492. border-bottom-left-radius:4px;
  2493. border-bottom-right-radius:4px;
  2494. }
  2495. .options li {
  2496. text-align:center;
  2497. padding:5px;
  2498. transition:0.15s ease-out;
  2499. }
  2500. .options li:hover {
  2501. border:0 solid #189EFC;
  2502. border-left-width:5px;
  2503. border-right-width:5px;
  2504. }