style.css 67 KB

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