main.css 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397
  1. :root {
  2. --body-bg-color: #fff;
  3. --content-bg-color: #fff;
  4. --card-bg-color: #f5f5f5;
  5. --text-color: #555;
  6. --link-color: #555;
  7. --link-hover-color: #222;
  8. --brand-color: #fff;
  9. --brand-hover-color: #fff;
  10. --table-row-odd-bg-color: #f9f9f9;
  11. --table-row-hover-bg-color: #f5f5f5;
  12. --menu-item-bg-color: #f5f5f5;
  13. }
  14. html {
  15. line-height: 1.15; /* 1 */
  16. -webkit-text-size-adjust: 100%; /* 2 */
  17. }
  18. body {
  19. margin: 0;
  20. }
  21. main {
  22. display: block;
  23. }
  24. h1 {
  25. font-size: 2em;
  26. margin: 0.67em 0;
  27. }
  28. hr {
  29. box-sizing: content-box; /* 1 */
  30. height: 0; /* 1 */
  31. overflow: visible; /* 2 */
  32. }
  33. pre {
  34. font-family: monospace, monospace; /* 1 */
  35. font-size: 1em; /* 2 */
  36. }
  37. a {
  38. background: transparent;
  39. }
  40. abbr[title] {
  41. border-bottom: none; /* 1 */
  42. text-decoration: underline; /* 2 */
  43. text-decoration: underline dotted; /* 2 */
  44. }
  45. b,
  46. strong {
  47. font-weight: bolder;
  48. }
  49. code,
  50. kbd,
  51. samp {
  52. font-family: monospace, monospace; /* 1 */
  53. font-size: 1em; /* 2 */
  54. }
  55. small {
  56. font-size: 80%;
  57. }
  58. sub,
  59. sup {
  60. font-size: 75%;
  61. line-height: 0;
  62. position: relative;
  63. vertical-align: baseline;
  64. }
  65. sub {
  66. bottom: -0.25em;
  67. }
  68. sup {
  69. top: -0.5em;
  70. }
  71. img {
  72. border-style: none;
  73. }
  74. button,
  75. input,
  76. optgroup,
  77. select,
  78. textarea {
  79. font-family: inherit; /* 1 */
  80. font-size: 100%; /* 1 */
  81. line-height: 1.15; /* 1 */
  82. margin: 0; /* 2 */
  83. }
  84. button,
  85. input {
  86. /* 1 */
  87. overflow: visible;
  88. }
  89. button,
  90. select {
  91. /* 1 */
  92. text-transform: none;
  93. }
  94. button,
  95. [type='button'],
  96. [type='reset'],
  97. [type='submit'] {
  98. -webkit-appearance: button;
  99. }
  100. button::-moz-focus-inner,
  101. [type='button']::-moz-focus-inner,
  102. [type='reset']::-moz-focus-inner,
  103. [type='submit']::-moz-focus-inner {
  104. border-style: none;
  105. padding: 0;
  106. }
  107. button:-moz-focusring,
  108. [type='button']:-moz-focusring,
  109. [type='reset']:-moz-focusring,
  110. [type='submit']:-moz-focusring {
  111. outline: 1px dotted ButtonText;
  112. }
  113. fieldset {
  114. padding: 0.35em 0.75em 0.625em;
  115. }
  116. legend {
  117. box-sizing: border-box; /* 1 */
  118. color: inherit; /* 2 */
  119. display: table; /* 1 */
  120. max-width: 100%; /* 1 */
  121. padding: 0; /* 3 */
  122. white-space: normal; /* 1 */
  123. }
  124. progress {
  125. vertical-align: baseline;
  126. }
  127. textarea {
  128. overflow: auto;
  129. }
  130. [type='checkbox'],
  131. [type='radio'] {
  132. box-sizing: border-box; /* 1 */
  133. padding: 0; /* 2 */
  134. }
  135. [type='number']::-webkit-inner-spin-button,
  136. [type='number']::-webkit-outer-spin-button {
  137. height: auto;
  138. }
  139. [type='search'] {
  140. outline-offset: -2px; /* 2 */
  141. -webkit-appearance: textfield; /* 1 */
  142. }
  143. [type='search']::-webkit-search-decoration {
  144. -webkit-appearance: none;
  145. }
  146. ::-webkit-file-upload-button {
  147. font: inherit; /* 2 */
  148. -webkit-appearance: button; /* 1 */
  149. }
  150. details {
  151. display: block;
  152. }
  153. summary {
  154. display: list-item;
  155. }
  156. template {
  157. display: none;
  158. }
  159. [hidden] {
  160. display: none;
  161. }
  162. ::selection {
  163. background: #262a30;
  164. color: #fff;
  165. }
  166. html,
  167. body {
  168. height: 100%;
  169. }
  170. body {
  171. background: var(--body-bg-color);
  172. color: var(--text-color);
  173. font-family: 'Lato', "PingFang SC", "Microsoft YaHei", sans-serif;
  174. font-size: 1em;
  175. line-height: 2;
  176. }
  177. @media (max-width: 991px) {
  178. body {
  179. padding-left: 0 !important;
  180. padding-right: 0 !important;
  181. }
  182. }
  183. h1,
  184. h2,
  185. h3,
  186. h4,
  187. h5,
  188. h6 {
  189. font-family: 'Lato', "PingFang SC", "Microsoft YaHei", sans-serif;
  190. font-weight: bold;
  191. line-height: 1.5;
  192. margin: 20px 0 15px;
  193. }
  194. h1 {
  195. font-size: 1.5em;
  196. }
  197. h2 {
  198. font-size: 1.375em;
  199. }
  200. h3 {
  201. font-size: 1.25em;
  202. }
  203. h4 {
  204. font-size: 1.125em;
  205. }
  206. h5 {
  207. font-size: 1em;
  208. }
  209. h6 {
  210. font-size: 0.875em;
  211. }
  212. p {
  213. margin: 0 0 20px 0;
  214. }
  215. a,
  216. span.exturl {
  217. border-bottom: 1px solid #999;
  218. color: var(--link-color);
  219. outline: 0;
  220. text-decoration: none;
  221. overflow-wrap: break-word;
  222. word-wrap: break-word;
  223. cursor: pointer;
  224. }
  225. a:hover,
  226. span.exturl:hover {
  227. border-bottom-color: var(--link-hover-color);
  228. color: var(--link-hover-color);
  229. }
  230. iframe,
  231. img,
  232. video {
  233. display: block;
  234. margin-left: auto;
  235. margin-right: auto;
  236. max-width: 100%;
  237. }
  238. hr {
  239. background-image: repeating-linear-gradient(-45deg, #ddd, #ddd 4px, transparent 4px, transparent 8px);
  240. border: 0;
  241. height: 3px;
  242. margin: 40px 0;
  243. }
  244. blockquote {
  245. border-left: 4px solid #ddd;
  246. color: #666;
  247. margin: 0;
  248. padding: 0 15px;
  249. }
  250. blockquote cite::before {
  251. content: '-';
  252. padding: 0 5px;
  253. }
  254. dt {
  255. font-weight: bold;
  256. }
  257. dd {
  258. margin: 0;
  259. padding: 0;
  260. }
  261. kbd {
  262. background-color: #f5f5f5;
  263. background-image: linear-gradient(#eee, #fff, #eee);
  264. border: 1px solid #ccc;
  265. border-radius: 0.2em;
  266. box-shadow: 0.1em 0.1em 0.2em rgba(0,0,0,0.1);
  267. font-family: inherit;
  268. padding: 0.1em 0.3em;
  269. white-space: nowrap;
  270. }
  271. .table-container {
  272. overflow: auto;
  273. }
  274. table {
  275. border-collapse: collapse;
  276. border-spacing: 0;
  277. font-size: 0.875em;
  278. margin: 0 0 20px 0;
  279. width: 100%;
  280. }
  281. tbody tr:nth-of-type(odd) {
  282. background: var(--table-row-odd-bg-color);
  283. }
  284. tbody tr:hover {
  285. background: var(--table-row-hover-bg-color);
  286. }
  287. caption,
  288. th,
  289. td {
  290. font-weight: normal;
  291. padding: 8px;
  292. text-align: left;
  293. vertical-align: middle;
  294. }
  295. th,
  296. td {
  297. border: 1px solid #ddd;
  298. border-bottom: 3px solid #ddd;
  299. }
  300. th {
  301. font-weight: 700;
  302. padding-bottom: 10px;
  303. }
  304. td {
  305. border-bottom-width: 1px;
  306. }
  307. .btn {
  308. background: #222;
  309. border: 2px solid #222;
  310. border-radius: 0;
  311. color: #fff;
  312. display: inline-block;
  313. font-size: 0.875em;
  314. line-height: 2;
  315. padding: 0 20px;
  316. text-decoration: none;
  317. transition-property: background-color;
  318. transition-delay: 0s;
  319. transition-duration: 0.2s;
  320. transition-timing-function: ease-in-out;
  321. }
  322. .btn:hover {
  323. background: #fff;
  324. border-color: #222;
  325. color: #222;
  326. }
  327. .btn + .btn {
  328. margin: 0 0 8px 8px;
  329. }
  330. .btn .fa-fw {
  331. text-align: left;
  332. width: 1.285714285714286em;
  333. }
  334. .toggle {
  335. line-height: 0;
  336. }
  337. .toggle .toggle-line {
  338. background: #fff;
  339. display: inline-block;
  340. height: 2px;
  341. left: 0;
  342. position: relative;
  343. top: 0;
  344. transition: all 0.4s;
  345. vertical-align: top;
  346. width: 100%;
  347. }
  348. .toggle .toggle-line:not(:first-child) {
  349. margin-top: 3px;
  350. }
  351. .toggle.toggle-arrow .toggle-line-first {
  352. left: 50%;
  353. top: 2px;
  354. transform: rotate(45deg);
  355. width: 50%;
  356. }
  357. .toggle.toggle-arrow .toggle-line-middle {
  358. left: 2px;
  359. width: 90%;
  360. }
  361. .toggle.toggle-arrow .toggle-line-last {
  362. left: 50%;
  363. top: -2px;
  364. transform: rotate(-45deg);
  365. width: 50%;
  366. }
  367. .toggle.toggle-close .toggle-line-first {
  368. transform: rotate(-45deg);
  369. top: 5px;
  370. }
  371. .toggle.toggle-close .toggle-line-middle {
  372. opacity: 0;
  373. }
  374. .toggle.toggle-close .toggle-line-last {
  375. transform: rotate(45deg);
  376. top: -5px;
  377. }
  378. .highlight-container {
  379. position: relative;
  380. }
  381. .highlight-container:hover .copy-btn,
  382. .highlight-container .copy-btn:focus {
  383. opacity: 1;
  384. }
  385. .copy-btn {
  386. color: #333;
  387. cursor: pointer;
  388. display: inline-block;
  389. font-weight: bold;
  390. line-height: 1.6;
  391. opacity: 0;
  392. outline: 0;
  393. padding: 2px 6px;
  394. position: absolute;
  395. vertical-align: middle;
  396. white-space: nowrap;
  397. -moz-user-select: none;
  398. -ms-user-select: none;
  399. -webkit-user-select: none;
  400. user-select: none;
  401. transition-delay: 0s;
  402. transition-duration: 0.2s;
  403. transition-timing-function: ease-in-out;
  404. background: #fff;
  405. border: 0;
  406. font-size: 0.8125em;
  407. right: 0;
  408. top: 0;
  409. }
  410. .highlight,
  411. pre {
  412. background: #f7f7f7;
  413. color: #4d4d4c;
  414. line-height: 1.6;
  415. margin: 0 auto 20px;
  416. }
  417. pre,
  418. code {
  419. font-family: consolas, Menlo, monospace, "PingFang SC", "Microsoft YaHei";
  420. }
  421. code {
  422. background: #eee;
  423. border-radius: 3px;
  424. color: #555;
  425. padding: 2px 4px;
  426. overflow-wrap: break-word;
  427. word-wrap: break-word;
  428. }
  429. .highlight *::selection {
  430. background: #d6d6d6;
  431. }
  432. .highlight pre {
  433. border: 0;
  434. margin: 0;
  435. padding: 10px 0;
  436. }
  437. .highlight table {
  438. border: 0;
  439. margin: 0;
  440. width: auto;
  441. }
  442. .highlight td {
  443. border: 0;
  444. padding: 0;
  445. }
  446. .highlight figcaption {
  447. background: #eee;
  448. color: #4d4d4c;
  449. display: flex;
  450. font-size: 0.875em;
  451. justify-content: space-between;
  452. line-height: 1.2;
  453. padding: 0.5em;
  454. }
  455. .highlight figcaption a {
  456. color: #4d4d4c;
  457. }
  458. .highlight figcaption a:hover {
  459. border-bottom-color: #4d4d4c;
  460. }
  461. .highlight .gutter {
  462. -moz-user-select: none;
  463. -ms-user-select: none;
  464. -webkit-user-select: none;
  465. user-select: none;
  466. }
  467. .highlight .gutter pre {
  468. background: #eff2f3;
  469. color: #869194;
  470. padding-left: 10px;
  471. padding-right: 10px;
  472. text-align: right;
  473. }
  474. .highlight .code pre {
  475. background: #f7f7f7;
  476. padding-left: 10px;
  477. width: 100%;
  478. }
  479. .gist table {
  480. width: auto;
  481. }
  482. .gist table td {
  483. border: 0;
  484. }
  485. pre {
  486. overflow: auto;
  487. padding: 10px;
  488. }
  489. pre code {
  490. background: none;
  491. color: #4d4d4c;
  492. font-size: 0.875em;
  493. padding: 0;
  494. text-shadow: none;
  495. }
  496. pre .deletion {
  497. background: #fdd;
  498. }
  499. pre .addition {
  500. background: #dfd;
  501. }
  502. pre .meta {
  503. color: #eab700;
  504. -moz-user-select: none;
  505. -ms-user-select: none;
  506. -webkit-user-select: none;
  507. user-select: none;
  508. }
  509. pre .comment {
  510. color: #8e908c;
  511. }
  512. pre .variable,
  513. pre .attribute,
  514. pre .tag,
  515. pre .name,
  516. pre .regexp,
  517. pre .ruby .constant,
  518. pre .xml .tag .title,
  519. pre .xml .pi,
  520. pre .xml .doctype,
  521. pre .html .doctype,
  522. pre .css .id,
  523. pre .css .class,
  524. pre .css .pseudo {
  525. color: #c82829;
  526. }
  527. pre .number,
  528. pre .preprocessor,
  529. pre .built_in,
  530. pre .builtin-name,
  531. pre .literal,
  532. pre .params,
  533. pre .constant,
  534. pre .command {
  535. color: #f5871f;
  536. }
  537. pre .ruby .class .title,
  538. pre .css .rules .attribute,
  539. pre .string,
  540. pre .symbol,
  541. pre .value,
  542. pre .inheritance,
  543. pre .header,
  544. pre .ruby .symbol,
  545. pre .xml .cdata,
  546. pre .special,
  547. pre .formula {
  548. color: #718c00;
  549. }
  550. pre .title,
  551. pre .css .hexcolor {
  552. color: #3e999f;
  553. }
  554. pre .function,
  555. pre .python .decorator,
  556. pre .python .title,
  557. pre .ruby .function .title,
  558. pre .ruby .title .keyword,
  559. pre .perl .sub,
  560. pre .javascript .title,
  561. pre .coffeescript .title {
  562. color: #4271ae;
  563. }
  564. pre .keyword,
  565. pre .javascript .function {
  566. color: #8959a8;
  567. }
  568. .blockquote-center {
  569. border-left: none;
  570. margin: 40px 0;
  571. padding: 0;
  572. position: relative;
  573. text-align: center;
  574. }
  575. .blockquote-center::before,
  576. .blockquote-center::after {
  577. background-repeat: no-repeat;
  578. background-size: 22px 22px;
  579. content: ' ';
  580. display: block;
  581. height: 24px;
  582. opacity: 0.2;
  583. position: absolute;
  584. width: 100%;
  585. }
  586. .blockquote-center::before {
  587. background-image: url("../images/quote-l.svg");
  588. background-position: 0 -6px;
  589. border-top: 1px solid #ccc;
  590. top: -20px;
  591. }
  592. .blockquote-center::after {
  593. background-image: url("../images/quote-r.svg");
  594. background-position: 100% 8px;
  595. border-bottom: 1px solid #ccc;
  596. bottom: -20px;
  597. }
  598. .blockquote-center p,
  599. .blockquote-center div {
  600. text-align: center;
  601. }
  602. .post-body .group-picture img {
  603. margin: 0 auto;
  604. padding: 0 3px;
  605. }
  606. .group-picture-row {
  607. margin-bottom: 6px;
  608. overflow: hidden;
  609. }
  610. .group-picture-column {
  611. float: left;
  612. margin-bottom: 10px;
  613. }
  614. .post-body .label {
  615. color: #555;
  616. display: inline;
  617. padding: 0 2px;
  618. }
  619. .post-body .label.default {
  620. background: #f0f0f0;
  621. }
  622. .post-body .label.primary {
  623. background: #efe6f7;
  624. }
  625. .post-body .label.info {
  626. background: #e5f2f8;
  627. }
  628. .post-body .label.success {
  629. background: #e7f4e9;
  630. }
  631. .post-body .label.warning {
  632. background: #fcf6e1;
  633. }
  634. .post-body .label.danger {
  635. background: #fae8eb;
  636. }
  637. .post-body .tabs {
  638. margin-bottom: 20px;
  639. }
  640. .post-body .tabs,
  641. .tabs-comment {
  642. display: block;
  643. padding-top: 10px;
  644. position: relative;
  645. }
  646. .post-body .tabs ul.nav-tabs,
  647. .tabs-comment ul.nav-tabs {
  648. display: flex;
  649. flex-wrap: wrap;
  650. margin: 0;
  651. margin-bottom: -1px;
  652. padding: 0;
  653. }
  654. @media (max-width: 413px) {
  655. .post-body .tabs ul.nav-tabs,
  656. .tabs-comment ul.nav-tabs {
  657. display: block;
  658. margin-bottom: 5px;
  659. }
  660. }
  661. .post-body .tabs ul.nav-tabs li.tab,
  662. .tabs-comment ul.nav-tabs li.tab {
  663. border-bottom: 1px solid #ddd;
  664. border-left: 1px solid transparent;
  665. border-right: 1px solid transparent;
  666. border-top: 3px solid transparent;
  667. flex-grow: 1;
  668. list-style-type: none;
  669. border-radius: 0 0 0 0;
  670. }
  671. @media (max-width: 413px) {
  672. .post-body .tabs ul.nav-tabs li.tab,
  673. .tabs-comment ul.nav-tabs li.tab {
  674. border-bottom: 1px solid transparent;
  675. border-left: 3px solid transparent;
  676. border-right: 1px solid transparent;
  677. border-top: 1px solid transparent;
  678. }
  679. }
  680. @media (max-width: 413px) {
  681. .post-body .tabs ul.nav-tabs li.tab,
  682. .tabs-comment ul.nav-tabs li.tab {
  683. border-radius: 0;
  684. }
  685. }
  686. .post-body .tabs ul.nav-tabs li.tab a,
  687. .tabs-comment ul.nav-tabs li.tab a {
  688. border-bottom: initial;
  689. display: block;
  690. line-height: 1.8;
  691. outline: 0;
  692. padding: 0.25em 0.75em;
  693. text-align: center;
  694. transition-delay: 0s;
  695. transition-duration: 0.2s;
  696. transition-timing-function: ease-out;
  697. }
  698. .post-body .tabs ul.nav-tabs li.tab a i,
  699. .tabs-comment ul.nav-tabs li.tab a i {
  700. width: 1.285714285714286em;
  701. }
  702. .post-body .tabs ul.nav-tabs li.tab.active,
  703. .tabs-comment ul.nav-tabs li.tab.active {
  704. border-bottom: 1px solid transparent;
  705. border-left: 1px solid #ddd;
  706. border-right: 1px solid #ddd;
  707. border-top: 3px solid #fc6423;
  708. }
  709. @media (max-width: 413px) {
  710. .post-body .tabs ul.nav-tabs li.tab.active,
  711. .tabs-comment ul.nav-tabs li.tab.active {
  712. border-bottom: 1px solid #ddd;
  713. border-left: 3px solid #fc6423;
  714. border-right: 1px solid #ddd;
  715. border-top: 1px solid #ddd;
  716. }
  717. }
  718. .post-body .tabs ul.nav-tabs li.tab.active a,
  719. .tabs-comment ul.nav-tabs li.tab.active a {
  720. color: var(--link-color);
  721. cursor: default;
  722. }
  723. .post-body .tabs .tab-content .tab-pane,
  724. .tabs-comment .tab-content .tab-pane {
  725. border: 1px solid #ddd;
  726. border-top: 0;
  727. padding: 20px 20px 0 20px;
  728. border-radius: 0;
  729. }
  730. .post-body .tabs .tab-content .tab-pane:not(.active),
  731. .tabs-comment .tab-content .tab-pane:not(.active) {
  732. display: none;
  733. }
  734. .post-body .tabs .tab-content .tab-pane.active,
  735. .tabs-comment .tab-content .tab-pane.active {
  736. display: block;
  737. }
  738. .post-body .tabs .tab-content .tab-pane.active:nth-of-type(1),
  739. .tabs-comment .tab-content .tab-pane.active:nth-of-type(1) {
  740. border-radius: 0 0 0 0;
  741. }
  742. @media (max-width: 413px) {
  743. .post-body .tabs .tab-content .tab-pane.active:nth-of-type(1),
  744. .tabs-comment .tab-content .tab-pane.active:nth-of-type(1) {
  745. border-radius: 0;
  746. }
  747. }
  748. .post-body .note {
  749. border-radius: 3px;
  750. margin-bottom: 20px;
  751. padding: 1em;
  752. position: relative;
  753. background: #f9f9f9;
  754. border: initial;
  755. border-left: 3px solid #eee;
  756. }
  757. .post-body .note h2,
  758. .post-body .note h3,
  759. .post-body .note h4,
  760. .post-body .note h5,
  761. .post-body .note h6 {
  762. margin-top: 3px;
  763. border-bottom: initial;
  764. margin-bottom: 0;
  765. padding-top: 0;
  766. }
  767. .post-body .note p:first-child,
  768. .post-body .note ul:first-child,
  769. .post-body .note ol:first-child,
  770. .post-body .note table:first-child,
  771. .post-body .note pre:first-child,
  772. .post-body .note blockquote:first-child,
  773. .post-body .note img:first-child {
  774. margin-top: 0;
  775. }
  776. .post-body .note p:last-child,
  777. .post-body .note ul:last-child,
  778. .post-body .note ol:last-child,
  779. .post-body .note table:last-child,
  780. .post-body .note pre:last-child,
  781. .post-body .note blockquote:last-child,
  782. .post-body .note img:last-child {
  783. margin-bottom: 0;
  784. }
  785. .post-body .note:not(.no-icon) {
  786. padding-left: 2.5em;
  787. }
  788. .post-body .note:not(.no-icon)::before {
  789. font-family: 'FontAwesome';
  790. font-size: 1.5em;
  791. left: 0.4em;
  792. position: absolute;
  793. top: calc(50% - 1em);
  794. }
  795. .post-body .note.default {
  796. background: #f7f7f7;
  797. border-left-color: #777;
  798. }
  799. .post-body .note.default h2,
  800. .post-body .note.default h3,
  801. .post-body .note.default h4,
  802. .post-body .note.default h5,
  803. .post-body .note.default h6 {
  804. color: #777;
  805. }
  806. .post-body .note.default:not(.no-icon)::before {
  807. content: "\f0a9";
  808. color: #777;
  809. }
  810. .post-body .note.primary {
  811. background: #f5f0fa;
  812. border-left-color: #6f42c1;
  813. }
  814. .post-body .note.primary h2,
  815. .post-body .note.primary h3,
  816. .post-body .note.primary h4,
  817. .post-body .note.primary h5,
  818. .post-body .note.primary h6 {
  819. color: #6f42c1;
  820. }
  821. .post-body .note.primary:not(.no-icon)::before {
  822. content: "\f055";
  823. color: #6f42c1;
  824. }
  825. .post-body .note.info {
  826. background: #eef7fa;
  827. border-left-color: #428bca;
  828. }
  829. .post-body .note.info h2,
  830. .post-body .note.info h3,
  831. .post-body .note.info h4,
  832. .post-body .note.info h5,
  833. .post-body .note.info h6 {
  834. color: #428bca;
  835. }
  836. .post-body .note.info:not(.no-icon)::before {
  837. content: "\f05a";
  838. color: #428bca;
  839. }
  840. .post-body .note.success {
  841. background: #eff8f0;
  842. border-left-color: #5cb85c;
  843. }
  844. .post-body .note.success h2,
  845. .post-body .note.success h3,
  846. .post-body .note.success h4,
  847. .post-body .note.success h5,
  848. .post-body .note.success h6 {
  849. color: #5cb85c;
  850. }
  851. .post-body .note.success:not(.no-icon)::before {
  852. content: "\f058";
  853. color: #5cb85c;
  854. }
  855. .post-body .note.warning {
  856. background: #fdf8ea;
  857. border-left-color: #f0ad4e;
  858. }
  859. .post-body .note.warning h2,
  860. .post-body .note.warning h3,
  861. .post-body .note.warning h4,
  862. .post-body .note.warning h5,
  863. .post-body .note.warning h6 {
  864. color: #f0ad4e;
  865. }
  866. .post-body .note.warning:not(.no-icon)::before {
  867. content: "\f06a";
  868. color: #f0ad4e;
  869. }
  870. .post-body .note.danger {
  871. background: #fcf1f2;
  872. border-left-color: #d9534f;
  873. }
  874. .post-body .note.danger h2,
  875. .post-body .note.danger h3,
  876. .post-body .note.danger h4,
  877. .post-body .note.danger h5,
  878. .post-body .note.danger h6 {
  879. color: #d9534f;
  880. }
  881. .post-body .note.danger:not(.no-icon)::before {
  882. content: "\f056";
  883. color: #d9534f;
  884. }
  885. .pagination .prev,
  886. .pagination .next,
  887. .pagination .page-number,
  888. .pagination .space {
  889. display: inline-block;
  890. margin: 0 10px;
  891. padding: 0 11px;
  892. position: relative;
  893. top: -1px;
  894. }
  895. @media (max-width: 767px) {
  896. .pagination .prev,
  897. .pagination .next,
  898. .pagination .page-number,
  899. .pagination .space {
  900. margin: 0 5px;
  901. }
  902. }
  903. .pagination {
  904. border-top: 1px solid #eee;
  905. margin: 120px 0 0;
  906. text-align: center;
  907. }
  908. .pagination .prev,
  909. .pagination .next,
  910. .pagination .page-number {
  911. border-bottom: 0;
  912. border-top: 1px solid #eee;
  913. transition-property: border-color;
  914. transition-delay: 0s;
  915. transition-duration: 0.2s;
  916. transition-timing-function: ease-in-out;
  917. }
  918. .pagination .prev:hover,
  919. .pagination .next:hover,
  920. .pagination .page-number:hover {
  921. border-top-color: #222;
  922. }
  923. .pagination .space {
  924. margin: 0;
  925. padding: 0;
  926. }
  927. .pagination .prev {
  928. margin-left: 0;
  929. }
  930. .pagination .next {
  931. margin-right: 0;
  932. }
  933. .pagination .page-number.current {
  934. background: #ccc;
  935. border-top-color: #ccc;
  936. color: #fff;
  937. }
  938. @media (max-width: 767px) {
  939. .pagination {
  940. border-top: none;
  941. }
  942. .pagination .prev,
  943. .pagination .next,
  944. .pagination .page-number {
  945. border-bottom: 1px solid #eee;
  946. border-top: 0;
  947. margin-bottom: 10px;
  948. padding: 0 10px;
  949. }
  950. .pagination .prev:hover,
  951. .pagination .next:hover,
  952. .pagination .page-number:hover {
  953. border-bottom-color: #222;
  954. }
  955. }
  956. .comments {
  957. margin: 60px 20px 0;
  958. overflow: hidden;
  959. }
  960. .comment-button-group {
  961. display: flex;
  962. flex-wrap: wrap-reverse;
  963. justify-content: center;
  964. margin: 1em 0;
  965. }
  966. .comment-button-group .comment-button {
  967. margin: 0.1em 0.2em;
  968. }
  969. .comment-button-group .comment-button.active {
  970. background: #fff;
  971. border-color: #222;
  972. color: #222;
  973. }
  974. .comment-position {
  975. display: none;
  976. }
  977. .comment-position.active {
  978. display: block;
  979. }
  980. .tabs-comment {
  981. background: var(--content-bg-color);
  982. margin-top: 4em;
  983. padding-top: 0;
  984. }
  985. .tabs-comment .comments {
  986. border: 0;
  987. box-shadow: none;
  988. margin-top: 0;
  989. padding-top: 0;
  990. }
  991. .container {
  992. min-height: 100%;
  993. position: relative;
  994. }
  995. .main-inner {
  996. margin: 0 auto;
  997. width: 700px;
  998. }
  999. @media (min-width: 1200px) {
  1000. .main-inner {
  1001. width: 800px;
  1002. }
  1003. }
  1004. @media (min-width: 1600px) {
  1005. .main-inner {
  1006. width: 900px;
  1007. }
  1008. }
  1009. .header {
  1010. background: transparent;
  1011. }
  1012. .header-inner {
  1013. margin: 0 auto;
  1014. width: 700px;
  1015. }
  1016. @media (min-width: 1200px) {
  1017. .header-inner {
  1018. width: 800px;
  1019. }
  1020. }
  1021. @media (min-width: 1600px) {
  1022. .header-inner {
  1023. width: 900px;
  1024. }
  1025. }
  1026. .site-brand-container {
  1027. display: flex;
  1028. flex-shrink: 0;
  1029. padding: 0 10px;
  1030. }
  1031. .headband {
  1032. background: #222;
  1033. height: 3px;
  1034. }
  1035. .site-meta {
  1036. flex-grow: 1;
  1037. text-align: center;
  1038. }
  1039. @media (max-width: 767px) {
  1040. .site-meta {
  1041. text-align: center;
  1042. }
  1043. }
  1044. .brand {
  1045. border-bottom: none;
  1046. color: var(--brand-color);
  1047. display: inline-block;
  1048. line-height: 1.375em;
  1049. padding: 0 40px;
  1050. position: relative;
  1051. }
  1052. .brand:hover {
  1053. color: var(--brand-hover-color);
  1054. }
  1055. .site-title {
  1056. display: inline-block;
  1057. font-family: 'Lato', "PingFang SC", "Microsoft YaHei", sans-serif;
  1058. font-size: 1.375em;
  1059. font-weight: normal;
  1060. line-height: 1.5;
  1061. vertical-align: top;
  1062. }
  1063. .site-subtitle {
  1064. color: #999;
  1065. font-size: 0.8125em;
  1066. margin: 10px 0;
  1067. }
  1068. .use-motion .brand {
  1069. opacity: 0;
  1070. }
  1071. .use-motion .site-title,
  1072. .use-motion .site-subtitle,
  1073. .use-motion .custom-logo-image {
  1074. opacity: 0;
  1075. position: relative;
  1076. top: -10px;
  1077. }
  1078. .site-nav-toggle,
  1079. .site-nav-right {
  1080. display: none;
  1081. }
  1082. @media (max-width: 767px) {
  1083. .site-nav-toggle,
  1084. .site-nav-right {
  1085. display: flex;
  1086. flex-direction: column;
  1087. justify-content: center;
  1088. }
  1089. }
  1090. .site-nav-toggle .toggle,
  1091. .site-nav-right .toggle {
  1092. color: var(--text-color);
  1093. padding: 10px;
  1094. width: 22px;
  1095. }
  1096. .site-nav-toggle .toggle .toggle-line,
  1097. .site-nav-right .toggle .toggle-line {
  1098. background: var(--text-color);
  1099. border-radius: 1px;
  1100. }
  1101. .site-nav {
  1102. display: block;
  1103. }
  1104. @media (max-width: 767px) {
  1105. .site-nav {
  1106. clear: both;
  1107. display: none;
  1108. }
  1109. }
  1110. .site-nav.site-nav-on {
  1111. display: block;
  1112. }
  1113. .menu {
  1114. margin-top: 20px;
  1115. padding-left: 0;
  1116. text-align: center;
  1117. }
  1118. .menu-item {
  1119. display: inline-block;
  1120. list-style: none;
  1121. margin: 0 10px;
  1122. }
  1123. @media (max-width: 767px) {
  1124. .menu-item {
  1125. display: block;
  1126. margin-top: 10px;
  1127. }
  1128. .menu-item.menu-item-search {
  1129. display: none;
  1130. }
  1131. }
  1132. .menu-item a,
  1133. .menu-item span.exturl {
  1134. border-bottom: 0;
  1135. display: block;
  1136. font-size: 0.8125em;
  1137. transition-property: border-color;
  1138. transition-delay: 0s;
  1139. transition-duration: 0.2s;
  1140. transition-timing-function: ease-in-out;
  1141. }
  1142. @media (hover: none) {
  1143. .menu-item a:hover,
  1144. .menu-item span.exturl:hover {
  1145. border-bottom-color: transparent !important;
  1146. }
  1147. }
  1148. .menu-item .fa {
  1149. margin-right: 8px;
  1150. }
  1151. .menu-item .badge {
  1152. display: inline-block;
  1153. font-weight: bold;
  1154. line-height: 1;
  1155. margin-left: 0.35em;
  1156. margin-top: 0.35em;
  1157. text-align: center;
  1158. white-space: nowrap;
  1159. }
  1160. @media (max-width: 767px) {
  1161. .menu-item .badge {
  1162. float: right;
  1163. margin-left: 0;
  1164. }
  1165. }
  1166. .menu-item-active a,
  1167. .menu .menu-item a:hover,
  1168. .menu .menu-item span.exturl:hover {
  1169. background: var(--menu-item-bg-color);
  1170. }
  1171. .use-motion .menu-item {
  1172. opacity: 0;
  1173. }
  1174. .sidebar {
  1175. background: #222;
  1176. bottom: 0;
  1177. box-shadow: inset 0 2px 6px #000;
  1178. position: fixed;
  1179. top: 0;
  1180. }
  1181. @media (max-width: 991px) {
  1182. .sidebar {
  1183. display: none;
  1184. }
  1185. }
  1186. .sidebar-inner {
  1187. color: #999;
  1188. padding: 18px 10px;
  1189. text-align: center;
  1190. }
  1191. .cc-license {
  1192. margin-top: 10px;
  1193. text-align: center;
  1194. }
  1195. .cc-license .cc-opacity {
  1196. border-bottom: none;
  1197. opacity: 0.7;
  1198. }
  1199. .cc-license .cc-opacity:hover {
  1200. opacity: 0.9;
  1201. }
  1202. .cc-license img {
  1203. display: inline-block;
  1204. }
  1205. .site-author-image {
  1206. border: 2px solid #333;
  1207. display: block;
  1208. margin: 0 auto;
  1209. max-width: 96px;
  1210. padding: 2px;
  1211. }
  1212. .site-author-name {
  1213. color: #f5f5f5;
  1214. font-weight: normal;
  1215. margin: 5px 0 0;
  1216. text-align: center;
  1217. }
  1218. .site-description {
  1219. color: #999;
  1220. font-size: 1em;
  1221. margin-top: 5px;
  1222. text-align: center;
  1223. }
  1224. .links-of-author {
  1225. margin-top: 15px;
  1226. }
  1227. .links-of-author a,
  1228. .links-of-author span.exturl {
  1229. border-bottom-color: #555;
  1230. display: inline-block;
  1231. font-size: 0.8125em;
  1232. margin-bottom: 10px;
  1233. margin-right: 10px;
  1234. vertical-align: middle;
  1235. }
  1236. .links-of-author a::before,
  1237. .links-of-author span.exturl::before {
  1238. background: #7d0f91;
  1239. border-radius: 50%;
  1240. content: ' ';
  1241. display: inline-block;
  1242. height: 4px;
  1243. margin-right: 3px;
  1244. vertical-align: middle;
  1245. width: 4px;
  1246. }
  1247. .sidebar-button {
  1248. margin-top: 15px;
  1249. }
  1250. .sidebar-button a {
  1251. border: 1px solid #fc6423;
  1252. border-radius: 4px;
  1253. color: #fc6423;
  1254. display: inline-block;
  1255. padding: 0 15px;
  1256. }
  1257. .sidebar-button a .fa {
  1258. margin-right: 5px;
  1259. }
  1260. .sidebar-button a:hover {
  1261. background: #fc6423;
  1262. border: 1px solid #fc6423;
  1263. color: #fff;
  1264. }
  1265. .sidebar-button a:hover .fa {
  1266. color: #fff;
  1267. }
  1268. .links-of-blogroll {
  1269. font-size: 0.8125em;
  1270. margin-top: 10px;
  1271. }
  1272. .links-of-blogroll-title {
  1273. font-size: 0.875em;
  1274. font-weight: 600;
  1275. margin-top: 0;
  1276. }
  1277. .links-of-blogroll-list {
  1278. list-style: none;
  1279. margin: 0;
  1280. padding: 0;
  1281. }
  1282. #sidebar-dimmer {
  1283. display: none;
  1284. }
  1285. @media (max-width: 767px) {
  1286. #sidebar-dimmer {
  1287. background: #000;
  1288. display: block;
  1289. height: 100%;
  1290. left: 100%;
  1291. opacity: 0;
  1292. position: fixed;
  1293. top: 0;
  1294. width: 100%;
  1295. z-index: 1100;
  1296. }
  1297. .sidebar-active + #sidebar-dimmer {
  1298. opacity: 0.7;
  1299. transform: translateX(-100%);
  1300. transition: opacity 0.5s;
  1301. }
  1302. }
  1303. .sidebar-nav {
  1304. margin: 0;
  1305. padding-bottom: 20px;
  1306. padding-left: 0;
  1307. }
  1308. .sidebar-nav li {
  1309. border-bottom: 1px solid transparent;
  1310. color: #555;
  1311. cursor: pointer;
  1312. display: inline-block;
  1313. font-size: 0.875em;
  1314. }
  1315. .sidebar-nav li.sidebar-nav-overview {
  1316. margin-left: 10px;
  1317. }
  1318. .sidebar-nav li:hover {
  1319. color: #f5f5f5;
  1320. }
  1321. .sidebar-nav .sidebar-nav-active {
  1322. border-bottom-color: #87daff;
  1323. color: #87daff;
  1324. }
  1325. .sidebar-nav .sidebar-nav-active:hover {
  1326. color: #87daff;
  1327. }
  1328. .sidebar-panel {
  1329. display: none;
  1330. overflow-x: hidden;
  1331. overflow-y: auto;
  1332. }
  1333. .sidebar-panel-active {
  1334. display: block;
  1335. }
  1336. .sidebar-toggle {
  1337. background: #222;
  1338. bottom: 45px;
  1339. cursor: pointer;
  1340. height: 14px;
  1341. left: 30px;
  1342. padding: 5px;
  1343. position: fixed;
  1344. width: 14px;
  1345. z-index: 1300;
  1346. }
  1347. @media (max-width: 991px) {
  1348. .sidebar-toggle {
  1349. left: 20px;
  1350. opacity: 0.8;
  1351. display: none;
  1352. }
  1353. }
  1354. .sidebar-toggle:hover .toggle-line {
  1355. background: #87daff;
  1356. }
  1357. .post-toc {
  1358. font-size: 0.875em;
  1359. }
  1360. .post-toc ol {
  1361. list-style: none;
  1362. margin: 0;
  1363. padding: 0 2px 5px 10px;
  1364. text-align: left;
  1365. }
  1366. .post-toc ol > ol {
  1367. padding-left: 0;
  1368. }
  1369. .post-toc ol a {
  1370. transition-property: all;
  1371. transition-delay: 0s;
  1372. transition-duration: 0.2s;
  1373. transition-timing-function: ease-in-out;
  1374. }
  1375. .post-toc .nav-item {
  1376. line-height: 1.8;
  1377. overflow: hidden;
  1378. text-overflow: ellipsis;
  1379. white-space: nowrap;
  1380. }
  1381. .post-toc .nav .nav-child {
  1382. display: none;
  1383. }
  1384. .post-toc .nav .active > .nav-child {
  1385. display: block;
  1386. }
  1387. .post-toc .nav .active-current > .nav-child {
  1388. display: block;
  1389. }
  1390. .post-toc .nav .active-current > .nav-child > .nav-item {
  1391. display: block;
  1392. }
  1393. .post-toc .nav .active > a {
  1394. border-bottom-color: #87daff;
  1395. color: #87daff;
  1396. }
  1397. .post-toc .nav .active-current > a {
  1398. color: #87daff;
  1399. }
  1400. .post-toc .nav .active-current > a:hover {
  1401. color: #87daff;
  1402. }
  1403. .site-state {
  1404. display: flex;
  1405. justify-content: center;
  1406. line-height: 1.4;
  1407. margin-top: 10px;
  1408. overflow: hidden;
  1409. text-align: center;
  1410. white-space: nowrap;
  1411. }
  1412. .site-state-item {
  1413. padding: 0 15px;
  1414. }
  1415. .site-state-item:not(:first-child) {
  1416. border-left: 1px solid #333;
  1417. }
  1418. .site-state-item a {
  1419. border-bottom: none;
  1420. }
  1421. .site-state-item-count {
  1422. display: block;
  1423. font-size: 1.25em;
  1424. font-weight: 600;
  1425. text-align: center;
  1426. }
  1427. .site-state-item-name {
  1428. color: inherit;
  1429. font-size: 0.875em;
  1430. }
  1431. .footer {
  1432. color: #999;
  1433. font-size: 0.875em;
  1434. padding: 20px 0;
  1435. }
  1436. .footer.footer-fixed {
  1437. bottom: 0;
  1438. left: 0;
  1439. position: absolute;
  1440. right: 0;
  1441. }
  1442. .footer-inner {
  1443. box-sizing: border-box;
  1444. margin: 0 auto;
  1445. text-align: center;
  1446. width: 700px;
  1447. }
  1448. @media (min-width: 1200px) {
  1449. .footer-inner {
  1450. width: 800px;
  1451. }
  1452. }
  1453. @media (min-width: 1600px) {
  1454. .footer-inner {
  1455. width: 900px;
  1456. }
  1457. }
  1458. .with-love {
  1459. color: #808080;
  1460. display: inline-block;
  1461. margin: 0 5px;
  1462. }
  1463. .powered-by,
  1464. .theme-info {
  1465. display: inline-block;
  1466. }
  1467. @-moz-keyframes iconAnimate {
  1468. 0%, 100% {
  1469. transform: scale(1);
  1470. }
  1471. 10%, 30% {
  1472. transform: scale(0.9);
  1473. }
  1474. 20%, 40%, 60%, 80% {
  1475. transform: scale(1.1);
  1476. }
  1477. 50%, 70% {
  1478. transform: scale(1.1);
  1479. }
  1480. }
  1481. @-webkit-keyframes iconAnimate {
  1482. 0%, 100% {
  1483. transform: scale(1);
  1484. }
  1485. 10%, 30% {
  1486. transform: scale(0.9);
  1487. }
  1488. 20%, 40%, 60%, 80% {
  1489. transform: scale(1.1);
  1490. }
  1491. 50%, 70% {
  1492. transform: scale(1.1);
  1493. }
  1494. }
  1495. @-o-keyframes iconAnimate {
  1496. 0%, 100% {
  1497. transform: scale(1);
  1498. }
  1499. 10%, 30% {
  1500. transform: scale(0.9);
  1501. }
  1502. 20%, 40%, 60%, 80% {
  1503. transform: scale(1.1);
  1504. }
  1505. 50%, 70% {
  1506. transform: scale(1.1);
  1507. }
  1508. }
  1509. @keyframes iconAnimate {
  1510. 0%, 100% {
  1511. transform: scale(1);
  1512. }
  1513. 10%, 30% {
  1514. transform: scale(0.9);
  1515. }
  1516. 20%, 40%, 60%, 80% {
  1517. transform: scale(1.1);
  1518. }
  1519. 50%, 70% {
  1520. transform: scale(1.1);
  1521. }
  1522. }
  1523. .back-to-top {
  1524. font-size: 12px;
  1525. text-align: center;
  1526. transition-delay: 0s;
  1527. transition-duration: 0.2s;
  1528. transition-timing-function: ease-in-out;
  1529. }
  1530. .back-to-top {
  1531. background: #222;
  1532. bottom: -100px;
  1533. box-sizing: border-box;
  1534. color: #fff;
  1535. cursor: pointer;
  1536. left: 30px;
  1537. opacity: 1;
  1538. padding: 0 6px;
  1539. position: fixed;
  1540. transition-property: bottom;
  1541. z-index: 1300;
  1542. width: initial;
  1543. }
  1544. .back-to-top:hover {
  1545. color: #87daff;
  1546. }
  1547. .back-to-top.back-to-top-on {
  1548. bottom: 19px;
  1549. }
  1550. @media (max-width: 991px) {
  1551. .back-to-top {
  1552. left: 20px;
  1553. opacity: 0.8;
  1554. }
  1555. }
  1556. .reading-progress-bar {
  1557. background: #225555;
  1558. display: block;
  1559. height: 3px;
  1560. left: 0;
  1561. position: fixed;
  1562. top: 0;
  1563. width: 0;
  1564. z-index: 1500;
  1565. }
  1566. .post-body {
  1567. font-family: 'Lato', "PingFang SC", "Microsoft YaHei", sans-serif;
  1568. overflow-wrap: break-word;
  1569. word-wrap: break-word;
  1570. }
  1571. @media (min-width: 1200px) {
  1572. .post-body {
  1573. font-size: 1.125em;
  1574. }
  1575. }
  1576. .post-body span.exturl .fa {
  1577. font-size: 0.875em;
  1578. margin-left: 4px;
  1579. }
  1580. .post-body .image-caption,
  1581. .post-body .figure .caption {
  1582. color: #999;
  1583. font-size: 0.875em;
  1584. font-weight: bold;
  1585. line-height: 1;
  1586. margin: -20px auto 15px;
  1587. text-align: center;
  1588. }
  1589. .post-sticky-flag {
  1590. display: inline-block;
  1591. transform: rotate(30deg);
  1592. }
  1593. .post-button {
  1594. margin-top: 40px;
  1595. text-align: center;
  1596. }
  1597. .use-motion .post-block,
  1598. .use-motion .pagination,
  1599. .use-motion .comments {
  1600. opacity: 0;
  1601. }
  1602. .use-motion .post-header {
  1603. opacity: 0;
  1604. }
  1605. .use-motion .post-body {
  1606. opacity: 0;
  1607. }
  1608. .use-motion .collection-header {
  1609. opacity: 0;
  1610. }
  1611. .posts-collapse {
  1612. margin-left: 55px;
  1613. position: relative;
  1614. }
  1615. @media (max-width: 767px) {
  1616. .posts-collapse {
  1617. margin-left: 20px;
  1618. margin-right: 20px;
  1619. }
  1620. }
  1621. .posts-collapse .collection-title {
  1622. font-size: 1.125em;
  1623. position: relative;
  1624. }
  1625. .posts-collapse .collection-title::before {
  1626. background: #999;
  1627. border: 1px solid #fff;
  1628. border-radius: 50%;
  1629. content: ' ';
  1630. height: 10px;
  1631. left: 0;
  1632. margin-left: -6px;
  1633. margin-top: -4px;
  1634. position: absolute;
  1635. top: 50%;
  1636. width: 10px;
  1637. }
  1638. .posts-collapse .collection-year {
  1639. margin: 60px 0;
  1640. position: relative;
  1641. }
  1642. .posts-collapse .collection-year::before {
  1643. background: #bbb;
  1644. border-radius: 50%;
  1645. content: ' ';
  1646. height: 8px;
  1647. left: 0;
  1648. margin-left: -4px;
  1649. margin-top: -4px;
  1650. position: absolute;
  1651. top: 50%;
  1652. width: 8px;
  1653. }
  1654. .posts-collapse .collection-header {
  1655. display: inline-block;
  1656. margin: 0 0 0 20px;
  1657. }
  1658. .posts-collapse .collection-header small {
  1659. color: #bbb;
  1660. margin-left: 5px;
  1661. }
  1662. .posts-collapse .post-header {
  1663. border-bottom: 1px dashed #ccc;
  1664. margin: 30px 0;
  1665. padding-left: 15px;
  1666. position: relative;
  1667. transition-property: border;
  1668. transition-delay: 0s;
  1669. transition-duration: 0.2s;
  1670. transition-timing-function: ease-in-out;
  1671. }
  1672. .posts-collapse .post-header::before {
  1673. background: #bbb;
  1674. border: 1px solid #fff;
  1675. border-radius: 50%;
  1676. content: ' ';
  1677. height: 6px;
  1678. left: 0;
  1679. margin-left: -4px;
  1680. position: absolute;
  1681. top: 0.75em;
  1682. transition-property: background;
  1683. width: 6px;
  1684. transition-delay: 0s;
  1685. transition-duration: 0.2s;
  1686. transition-timing-function: ease-in-out;
  1687. }
  1688. .posts-collapse .post-header:hover {
  1689. border-bottom-color: #666;
  1690. }
  1691. .posts-collapse .post-header:hover::before {
  1692. background: #222;
  1693. }
  1694. .posts-collapse .post-meta {
  1695. display: inline;
  1696. font-size: 0.75em;
  1697. margin-right: 10px;
  1698. }
  1699. .posts-collapse .post-title {
  1700. display: inline;
  1701. font-size: 1em;
  1702. font-weight: normal;
  1703. }
  1704. .posts-collapse .post-title a,
  1705. .posts-collapse .post-title span.exturl {
  1706. border-bottom: none;
  1707. color: var(--link-color);
  1708. }
  1709. .posts-collapse::before {
  1710. background: #f5f5f5;
  1711. content: ' ';
  1712. height: 100%;
  1713. left: 0;
  1714. margin-left: -2px;
  1715. position: absolute;
  1716. top: 1.25em;
  1717. width: 4px;
  1718. }
  1719. .posts-collapse .fa-external-link {
  1720. font-size: 0.875em;
  1721. margin-left: 5px;
  1722. }
  1723. .post-eof {
  1724. background: #ccc;
  1725. height: 1px;
  1726. margin: 80px auto 60px;
  1727. text-align: center;
  1728. width: 8%;
  1729. }
  1730. .post-block:last-child .post-eof {
  1731. display: none;
  1732. }
  1733. .posts-expand {
  1734. padding-top: 40px;
  1735. }
  1736. @media (max-width: 767px) {
  1737. .posts-expand {
  1738. margin: 0 20px;
  1739. }
  1740. }
  1741. @media (min-width: 992px) {
  1742. .post-body {
  1743. text-align: justify;
  1744. }
  1745. }
  1746. @media (max-width: 991px) {
  1747. .post-body {
  1748. text-align: justify;
  1749. }
  1750. }
  1751. .post-body h1,
  1752. .post-body h2,
  1753. .post-body h3,
  1754. .post-body h4,
  1755. .post-body h5,
  1756. .post-body h6 {
  1757. padding-top: 10px;
  1758. }
  1759. .post-body h1 .header-anchor,
  1760. .post-body h2 .header-anchor,
  1761. .post-body h3 .header-anchor,
  1762. .post-body h4 .header-anchor,
  1763. .post-body h5 .header-anchor,
  1764. .post-body h6 .header-anchor {
  1765. border-bottom-style: none;
  1766. color: #ccc;
  1767. float: right;
  1768. margin-left: 10px;
  1769. visibility: hidden;
  1770. }
  1771. .post-body h1 .header-anchor:hover,
  1772. .post-body h2 .header-anchor:hover,
  1773. .post-body h3 .header-anchor:hover,
  1774. .post-body h4 .header-anchor:hover,
  1775. .post-body h5 .header-anchor:hover,
  1776. .post-body h6 .header-anchor:hover {
  1777. color: inherit;
  1778. }
  1779. .post-body h1:hover .header-anchor,
  1780. .post-body h2:hover .header-anchor,
  1781. .post-body h3:hover .header-anchor,
  1782. .post-body h4:hover .header-anchor,
  1783. .post-body h5:hover .header-anchor,
  1784. .post-body h6:hover .header-anchor {
  1785. visibility: visible;
  1786. }
  1787. .post-body iframe,
  1788. .post-body img,
  1789. .post-body video {
  1790. margin-bottom: 20px;
  1791. }
  1792. .post-body .video-container {
  1793. height: 0;
  1794. margin-bottom: 20px;
  1795. overflow: hidden;
  1796. padding-top: 75%;
  1797. position: relative;
  1798. width: 100%;
  1799. }
  1800. .post-body .video-container iframe,
  1801. .post-body .video-container object,
  1802. .post-body .video-container embed {
  1803. height: 100%;
  1804. left: 0;
  1805. margin: 0;
  1806. position: absolute;
  1807. top: 0;
  1808. width: 100%;
  1809. }
  1810. .post-gallery {
  1811. align-items: center;
  1812. display: grid;
  1813. grid-gap: 10px;
  1814. grid-template-columns: 1fr 1fr 1fr;
  1815. margin-bottom: 20px;
  1816. }
  1817. @media (max-width: 767px) {
  1818. .post-gallery {
  1819. grid-template-columns: 1fr 1fr;
  1820. }
  1821. }
  1822. .post-gallery a {
  1823. border: 0;
  1824. }
  1825. .post-gallery img {
  1826. margin: 0;
  1827. }
  1828. .posts-expand .post-header {
  1829. font-size: 1.125em;
  1830. }
  1831. .posts-expand .post-title {
  1832. font-weight: normal;
  1833. margin: initial;
  1834. text-align: center;
  1835. overflow-wrap: break-word;
  1836. word-wrap: break-word;
  1837. }
  1838. .posts-expand .post-title-link {
  1839. border-bottom: none;
  1840. color: var(--link-color);
  1841. display: inline-block;
  1842. position: relative;
  1843. vertical-align: top;
  1844. }
  1845. .posts-expand .post-title-link::before {
  1846. background: var(--link-color);
  1847. bottom: 0;
  1848. content: '';
  1849. height: 2px;
  1850. left: 0;
  1851. position: absolute;
  1852. transform: scaleX(0);
  1853. visibility: hidden;
  1854. width: 100%;
  1855. transition-delay: 0s;
  1856. transition-duration: 0.2s;
  1857. transition-timing-function: ease-in-out;
  1858. }
  1859. .posts-expand .post-title-link:hover::before {
  1860. transform: scaleX(1);
  1861. visibility: visible;
  1862. }
  1863. .posts-expand .post-title-link .fa {
  1864. font-size: 0.875em;
  1865. margin-left: 5px;
  1866. }
  1867. .posts-expand .post-meta {
  1868. color: #999;
  1869. font-family: 'Lato', "PingFang SC", "Microsoft YaHei", sans-serif;
  1870. font-size: 0.75em;
  1871. margin: 3px 0 60px 0;
  1872. text-align: center;
  1873. }
  1874. .posts-expand .post-meta .post-description {
  1875. font-size: 0.875em;
  1876. margin-top: 2px;
  1877. }
  1878. .posts-expand .post-meta time {
  1879. border-bottom: 1px dashed #999;
  1880. cursor: pointer;
  1881. }
  1882. .post-meta .post-meta-item + .post-meta-item::before {
  1883. content: '|';
  1884. margin: 0 0.5em;
  1885. }
  1886. .post-meta-divider {
  1887. margin: 0 0.5em;
  1888. }
  1889. .post-meta-item-icon {
  1890. margin-right: 3px;
  1891. }
  1892. @media (max-width: 991px) {
  1893. .post-meta-item-icon {
  1894. display: inline-block;
  1895. }
  1896. }
  1897. @media (max-width: 991px) {
  1898. .post-meta-item-text {
  1899. display: none;
  1900. }
  1901. }
  1902. .post-nav {
  1903. border-top: 1px solid #eee;
  1904. display: flex;
  1905. justify-content: space-between;
  1906. margin-top: 15px;
  1907. padding-top: 10px;
  1908. }
  1909. .post-nav-item {
  1910. flex: 1;
  1911. }
  1912. .post-nav-item a {
  1913. border-bottom: none;
  1914. display: block;
  1915. font-size: 0.875em;
  1916. line-height: 1.6;
  1917. position: relative;
  1918. }
  1919. .post-nav-item a:active {
  1920. top: 2px;
  1921. }
  1922. .post-nav-item .fa {
  1923. font-size: 0.75em;
  1924. }
  1925. .post-nav-item:first-child {
  1926. margin-right: 15px;
  1927. }
  1928. .post-nav-item:first-child a {
  1929. padding-left: 5px;
  1930. }
  1931. .post-nav-item:first-child .fa {
  1932. margin-right: 5px;
  1933. }
  1934. .post-nav-item:last-child {
  1935. margin-left: 15px;
  1936. text-align: right;
  1937. }
  1938. .post-nav-item:last-child a {
  1939. padding-right: 5px;
  1940. }
  1941. .post-nav-item:last-child .fa {
  1942. margin-left: 5px;
  1943. }
  1944. .rtl.post-body p,
  1945. .rtl.post-body a,
  1946. .rtl.post-body h1,
  1947. .rtl.post-body h2,
  1948. .rtl.post-body h3,
  1949. .rtl.post-body h4,
  1950. .rtl.post-body h5,
  1951. .rtl.post-body h6,
  1952. .rtl.post-body li,
  1953. .rtl.post-body ul,
  1954. .rtl.post-body ol {
  1955. direction: rtl;
  1956. font-family: UKIJ Ekran;
  1957. }
  1958. .rtl.post-title {
  1959. font-family: UKIJ Ekran;
  1960. }
  1961. .post-tags {
  1962. margin-top: 40px;
  1963. text-align: center;
  1964. }
  1965. .post-tags a {
  1966. display: inline-block;
  1967. font-size: 0.8125em;
  1968. }
  1969. .post-tags a:not(:last-child) {
  1970. margin-right: 10px;
  1971. }
  1972. .post-widgets {
  1973. border-top: 1px solid #eee;
  1974. margin-top: 15px;
  1975. text-align: center;
  1976. }
  1977. .wp_rating {
  1978. height: 20px;
  1979. line-height: 20px;
  1980. margin-top: 10px;
  1981. padding-top: 6px;
  1982. text-align: center;
  1983. }
  1984. .social-like {
  1985. display: flex;
  1986. font-size: 0.875em;
  1987. justify-content: center;
  1988. text-align: center;
  1989. }
  1990. .reward-container {
  1991. margin: 20px auto;
  1992. padding: 10px 0;
  1993. text-align: center;
  1994. width: 90%;
  1995. }
  1996. .reward-container button {
  1997. background: #ff2a2a;
  1998. border: 0;
  1999. border-radius: 5px;
  2000. color: #fff;
  2001. cursor: pointer;
  2002. line-height: 2;
  2003. outline: 0;
  2004. padding: 0 15px;
  2005. vertical-align: text-top;
  2006. }
  2007. .reward-container button:hover {
  2008. background: #f55;
  2009. }
  2010. #qr {
  2011. padding-top: 20px;
  2012. }
  2013. #qr a {
  2014. border: 0;
  2015. }
  2016. #qr img {
  2017. display: inline-block;
  2018. margin: 0.8em 2em 0 2em;
  2019. max-width: 100%;
  2020. width: 180px;
  2021. }
  2022. #qr p {
  2023. text-align: center;
  2024. }
  2025. .post-copyright {
  2026. background: var(--card-bg-color);
  2027. border-left: 3px solid #ff2a2a;
  2028. list-style: none;
  2029. margin: 2em 0 0;
  2030. padding: 0.5em 1em;
  2031. }
  2032. .category-all-page .category-all-title {
  2033. text-align: center;
  2034. }
  2035. .category-all-page .category-all {
  2036. margin-top: 20px;
  2037. }
  2038. .category-all-page .category-list {
  2039. list-style: none;
  2040. margin: 0;
  2041. padding: 0;
  2042. }
  2043. .category-all-page .category-list-item {
  2044. margin: 5px 10px;
  2045. }
  2046. .category-all-page .category-list-count {
  2047. color: #bbb;
  2048. }
  2049. .category-all-page .category-list-count::before {
  2050. content: ' (';
  2051. display: inline;
  2052. }
  2053. .category-all-page .category-list-count::after {
  2054. content: ') ';
  2055. display: inline;
  2056. }
  2057. .category-all-page .category-list-child {
  2058. padding-left: 10px;
  2059. }
  2060. .event-list {
  2061. padding: 0;
  2062. }
  2063. .event-list hr {
  2064. background: #222;
  2065. margin: 20px 0 45px 0;
  2066. }
  2067. .event-list hr::after {
  2068. background: #222;
  2069. color: #fff;
  2070. content: 'NOW';
  2071. display: inline-block;
  2072. font-weight: bold;
  2073. padding: 0 5px;
  2074. text-align: right;
  2075. }
  2076. .event-list .event {
  2077. background: #222;
  2078. margin: 20px 0;
  2079. min-height: 40px;
  2080. padding: 15px 0 15px 10px;
  2081. }
  2082. .event-list .event .event-summary {
  2083. color: #fff;
  2084. margin: 0;
  2085. padding-bottom: 3px;
  2086. }
  2087. .event-list .event .event-summary::before {
  2088. animation: dot-flash 1s alternate infinite ease-in-out;
  2089. color: #fff;
  2090. content: '\f111';
  2091. display: inline-block;
  2092. font-family: 'FontAwesome';
  2093. font-size: 10px;
  2094. margin-right: 25px;
  2095. vertical-align: middle;
  2096. }
  2097. .event-list .event .event-relative-time {
  2098. color: #bbb;
  2099. display: inline-block;
  2100. font-size: 12px;
  2101. font-weight: normal;
  2102. padding-left: 12px;
  2103. }
  2104. .event-list .event .event-details {
  2105. color: #fff;
  2106. display: block;
  2107. line-height: 18px;
  2108. margin-left: 56px;
  2109. padding-bottom: 6px;
  2110. padding-top: 3px;
  2111. text-indent: -24px;
  2112. }
  2113. .event-list .event .event-details::before {
  2114. color: #fff;
  2115. display: inline-block;
  2116. font-family: 'FontAwesome';
  2117. margin-right: 9px;
  2118. text-align: center;
  2119. text-indent: 0;
  2120. width: 14px;
  2121. }
  2122. .event-list .event .event-details.event-location::before {
  2123. content: '\f041';
  2124. }
  2125. .event-list .event .event-details.event-duration::before {
  2126. content: '\f017';
  2127. }
  2128. .event-list .event-past {
  2129. background: #f5f5f5;
  2130. }
  2131. .event-list .event-past .event-summary,
  2132. .event-list .event-past .event-details {
  2133. color: #bbb;
  2134. opacity: 0.9;
  2135. }
  2136. .event-list .event-past .event-summary::before,
  2137. .event-list .event-past .event-details::before {
  2138. animation: none;
  2139. color: #bbb;
  2140. }
  2141. @-moz-keyframes dot-flash {
  2142. from {
  2143. opacity: 1;
  2144. transform: scale(1);
  2145. }
  2146. to {
  2147. opacity: 0;
  2148. transform: scale(0.8);
  2149. }
  2150. }
  2151. @-webkit-keyframes dot-flash {
  2152. from {
  2153. opacity: 1;
  2154. transform: scale(1);
  2155. }
  2156. to {
  2157. opacity: 0;
  2158. transform: scale(0.8);
  2159. }
  2160. }
  2161. @-o-keyframes dot-flash {
  2162. from {
  2163. opacity: 1;
  2164. transform: scale(1);
  2165. }
  2166. to {
  2167. opacity: 0;
  2168. transform: scale(0.8);
  2169. }
  2170. }
  2171. @keyframes dot-flash {
  2172. from {
  2173. opacity: 1;
  2174. transform: scale(1);
  2175. }
  2176. to {
  2177. opacity: 0;
  2178. transform: scale(0.8);
  2179. }
  2180. }
  2181. ul.breadcrumb {
  2182. font-size: 0.75em;
  2183. list-style: none;
  2184. margin: 1em 0;
  2185. padding: 0 2em;
  2186. text-align: center;
  2187. }
  2188. ul.breadcrumb li {
  2189. display: inline;
  2190. }
  2191. ul.breadcrumb li + li::before {
  2192. content: '/\00a0';
  2193. font-weight: normal;
  2194. padding: 0.5em;
  2195. }
  2196. ul.breadcrumb li + li:last-child {
  2197. font-weight: bold;
  2198. }
  2199. .tag-cloud {
  2200. text-align: center;
  2201. }
  2202. .tag-cloud a {
  2203. display: inline-block;
  2204. margin: 10px;
  2205. }
  2206. .tag-cloud a:hover {
  2207. color: #222 !important;
  2208. }
  2209. @media (max-width: 767px) {
  2210. .header-inner,
  2211. .main-inner,
  2212. .footer-inner {
  2213. width: auto;
  2214. }
  2215. }
  2216. .header-inner {
  2217. padding-top: 100px;
  2218. }
  2219. @media (max-width: 767px) {
  2220. .header-inner {
  2221. padding-top: 50px;
  2222. }
  2223. }
  2224. .main-inner {
  2225. padding-bottom: 60px;
  2226. }
  2227. .content {
  2228. padding-top: 70px;
  2229. }
  2230. @media (max-width: 767px) {
  2231. .content {
  2232. padding-top: 35px;
  2233. }
  2234. }
  2235. embed {
  2236. display: block;
  2237. margin: 0 auto 25px auto;
  2238. }
  2239. .custom-logo .site-meta-headline {
  2240. text-align: center;
  2241. }
  2242. .custom-logo .site-title {
  2243. color: #222;
  2244. margin: 10px auto 0;
  2245. }
  2246. .custom-logo .site-title a {
  2247. border: 0;
  2248. }
  2249. .custom-logo-image {
  2250. background: #fff;
  2251. margin: 0 auto;
  2252. max-width: 150px;
  2253. padding: 5px;
  2254. }
  2255. .brand {
  2256. background: #222;
  2257. }
  2258. @media (max-width: 767px) {
  2259. .site-nav {
  2260. border-bottom: 1px solid #ddd;
  2261. border-top: 1px solid #ddd;
  2262. left: 0;
  2263. margin: 0;
  2264. padding: 0;
  2265. width: 100%;
  2266. }
  2267. }
  2268. @media (max-width: 767px) {
  2269. .menu {
  2270. text-align: left;
  2271. }
  2272. }
  2273. .menu-item-active a,
  2274. .menu .menu-item a:hover,
  2275. .menu .menu-item span.exturl:hover {
  2276. background: transparent;
  2277. border-bottom: 1px solid var(--link-hover-color) !important;
  2278. }
  2279. @media (max-width: 767px) {
  2280. .menu-item-active a,
  2281. .menu .menu-item a:hover,
  2282. .menu .menu-item span.exturl:hover {
  2283. border-bottom: 1px dotted #ddd !important;
  2284. }
  2285. }
  2286. @media (max-width: 767px) {
  2287. .menu .menu-item {
  2288. margin: 0 10px;
  2289. }
  2290. }
  2291. .menu .menu-item a,
  2292. .menu .menu-item span.exturl {
  2293. border-bottom: 1px solid transparent;
  2294. }
  2295. @media (max-width: 767px) {
  2296. .menu .menu-item a,
  2297. .menu .menu-item span.exturl {
  2298. padding: 5px 10px;
  2299. }
  2300. }
  2301. @media (min-width: 768px) and (max-width: 991px) {
  2302. .menu .menu-item .fa {
  2303. display: block;
  2304. line-height: 2;
  2305. margin-right: 0;
  2306. width: 100%;
  2307. }
  2308. }
  2309. @media (min-width: 992px) {
  2310. .menu .menu-item .fa {
  2311. display: block;
  2312. line-height: 2;
  2313. margin-right: 0;
  2314. width: 100%;
  2315. }
  2316. }
  2317. .menu .menu-item .badge {
  2318. background: #eee;
  2319. padding: 1px 4px;
  2320. }
  2321. .sub-menu {
  2322. margin: 10px 0;
  2323. }
  2324. .sub-menu .menu-item {
  2325. display: inline-block;
  2326. }
  2327. .sidebar {
  2328. left: -320px;
  2329. }
  2330. .sidebar.sidebar-active {
  2331. left: 0;
  2332. }
  2333. .sidebar {
  2334. width: 320px;
  2335. z-index: 1200;
  2336. transition-delay: 0s;
  2337. transition-duration: 0.2s;
  2338. transition-timing-function: ease-out;
  2339. }
  2340. .sidebar a,
  2341. .sidebar span.exturl {
  2342. border-bottom-color: #555;
  2343. color: #999;
  2344. }
  2345. .sidebar a:hover,
  2346. .sidebar span.exturl:hover {
  2347. border-bottom-color: #eee;
  2348. color: #eee;
  2349. }
  2350. .links-of-blogroll-item {
  2351. padding: 2px 10px;
  2352. }
  2353. .links-of-blogroll-item a,
  2354. .links-of-blogroll-item span.exturl {
  2355. box-sizing: border-box;
  2356. display: inline-block;
  2357. max-width: 280px;
  2358. overflow: hidden;
  2359. text-overflow: ellipsis;
  2360. white-space: nowrap;
  2361. }
  2362. a#download {
  2363. display: inline-block;
  2364. padding: 0 10px;
  2365. color: #000;
  2366. background: transparent;
  2367. border: 2px solid #000;
  2368. border-radius: 2px;
  2369. transition: all 0.5s ease;
  2370. font-weight: bold;
  2371. }
  2372. a#download:hover {
  2373. background: #000;
  2374. color: #fff;
  2375. }
  2376. .content {
  2377. border-radius: 10px;
  2378. }
  2379. .main-inner {
  2380. border-radius: 30px;
  2381. padding: 60px 90px 60px 60px;
  2382. background: #fff;
  2383. opacity: 0.9;
  2384. min-height: 500px;
  2385. }
  2386. .header-inner {
  2387. opacity: 0.9;
  2388. border-radius: 30px;
  2389. background: rgba(255,255,255,0.9);
  2390. }
  2391. body {
  2392. background: url("https://source.unsplash.com/random/1600x900");
  2393. background-repeat: no-repeat;
  2394. background-attachment: fixed;
  2395. background-position: 50% 50%;
  2396. background-size: cover;
  2397. }