BlueLagoon.rtl.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209
  1. @charset "UTF-8";
  2. /*=== GENERAL */
  3. /*============*/
  4. html, body {
  5. background: #fafafa;
  6. color: black;
  7. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  8. font-size: 92%;
  9. }
  10. /*=== Links */
  11. a, button.as-link {
  12. color: #0062be;
  13. outline: none;
  14. }
  15. legend {
  16. margin: 20px 0 5px;
  17. padding: 5px 0;
  18. font-size: 1.4em;
  19. border-bottom: 1px solid #ddd;
  20. }
  21. label {
  22. min-height: 25px;
  23. padding: 5px 0;
  24. cursor: pointer;
  25. }
  26. textarea {
  27. width: 360px;
  28. height: 100px;
  29. }
  30. input, select, textarea {
  31. padding: 5px;
  32. background: #fff;
  33. color: #222;
  34. border: 1px solid #ccc;
  35. border-radius: 3px;
  36. box-shadow: 0 1px 2px #ccc inset, 0 1px #fff;
  37. min-height: 25px;
  38. line-height: 25px;
  39. vertical-align: middle;
  40. }
  41. option {
  42. padding: 0 .5em;
  43. }
  44. input:focus, select:focus, textarea:focus {
  45. color: #0f0f0f;
  46. border: solid 1px #0062bf;
  47. box-shadow: 0 0 3px #0062bf;
  48. }
  49. input:invalid, select:invalid {
  50. border-color: #f00;
  51. box-shadow: 0 0 2px 2px #fdd inset;
  52. }
  53. input:disabled, select:disabled {
  54. background: #eee;
  55. border-style: solid;
  56. border-color: #ccc;
  57. }
  58. input.extend {
  59. transition: width 200ms linear;
  60. }
  61. /*=== Tables */
  62. table {
  63. border-collapse: collapse;
  64. }
  65. th, td {
  66. border: 1px solid #ddd;
  67. }
  68. th {
  69. background: #f6f6f6;
  70. }
  71. form td,
  72. form th {
  73. font-weight: normal;
  74. text-align: center;
  75. }
  76. /*=== COMPONENTS */
  77. /*===============*/
  78. /*=== Forms */
  79. .form-group.form-actions {
  80. padding: 5px 0;
  81. background: #f4f4f4;
  82. border-top: 1px solid #ddd;
  83. }
  84. .form-group.form-actions .btn {
  85. margin: 0 10px;
  86. border-radius: 4px;
  87. box-shadow: 0 1px rgba(255,255,255,0.08) inset;
  88. }
  89. .form-group .group-name {
  90. padding: 10px 0;
  91. }
  92. .form-group .group-controls {
  93. min-height: 25px;
  94. padding: 5px 0;
  95. }
  96. /*=== Buttons */
  97. button.as-link[disabled] {
  98. color: #555 !important;
  99. }
  100. .dropdown-menu .input select, .dropdown-menu .input input {
  101. margin: 0 auto 5px;
  102. padding: 2px 5px;
  103. background: #444;
  104. color: #fff;
  105. border: solid 1px #171717;
  106. border-radius: 3px;
  107. box-shadow: 0 2px 2px #222 inset, 0px 1px rgba(255, 255, 255, 0.08);
  108. }
  109. .stick input,
  110. .stick .btn {
  111. border-radius: 0;
  112. }
  113. .stick .btn:first-child,.stick input:first-child {
  114. border-radius: 0 6px 6px 0;
  115. }
  116. .stick .btn:last-child, .stick input:last-child {
  117. border-radius: 6px 0 0 6px;
  118. }
  119. .stick .btn + .btn,
  120. .stick .btn + input,
  121. .stick .btn + .dropdown > .btn,
  122. .stick input + .btn,
  123. .stick input + input,
  124. .stick input + .dropdown > .btn,
  125. .stick .dropdown + .btn,
  126. .stick .dropdown + input,
  127. .stick .dropdown + .dropdown > .btn {
  128. border-right: none;
  129. }
  130. .stick .btn + .dropdown > .btn {
  131. border-right: none;
  132. border-radius: 3px 0 0 3px;
  133. }
  134. .btn {
  135. margin: 0;
  136. padding: 5px 10px;
  137. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  138. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  139. display: inline-block;
  140. color: #222;
  141. font-size: 0.9rem;
  142. border: solid 1px #ccc;
  143. border-radius: 4px;
  144. min-height: 37px;
  145. min-width: 15px;
  146. text-shadow: 0px -1px rgba(255,255,255,0.08);
  147. vertical-align: middle;
  148. cursor: pointer;
  149. overflow: hidden;
  150. }
  151. a.btn {
  152. min-height: 25px;
  153. line-height: 25px;
  154. }
  155. .btn:hover {
  156. text-shadow: 0 0 2px #fff;
  157. text-decoration: none;
  158. }
  159. .btn.active,.btn:active,.dropdown-target:target ~ .btn.dropdown-toggle {
  160. background: linear-gradient(-180deg, #ede7de 0%, #fff 100%) #ede7de;
  161. background: -webkit-linear-gradient(top, #ede7de 0%, #fff 100%);
  162. }
  163. .nav_menu .btn.active, .nav_menu .btn:active, .nav_menu .dropdown-target:target ~ .btn.dropdown-toggle {
  164. background: linear-gradient(-180deg, #ede7de 0%, #f6f6f6 100%) #ede7de;
  165. background: -webkit-linear-gradient(top, #ede7de 0%, #f6f6f6 100%);
  166. border: solid 1px #ccc;
  167. border-radius: 4px;
  168. box-shadow: 0 1px #fff;
  169. }
  170. .nav_menu .btn {
  171. background: transparent;
  172. border: 0;
  173. }
  174. .read_all {
  175. color: #222;
  176. }
  177. .btn.dropdown-toggle[href="#dropdown-configure"] {
  178. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  179. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  180. border: solid 1px #ccc;
  181. border-radius: 4px;
  182. box-shadow: 0 1px #fff;
  183. }
  184. .btn.dropdown-toggle:active {
  185. background: transparent;
  186. }
  187. .btn-important {
  188. background: linear-gradient(-180deg, #0090ff 0%, #0062be 100%) #e4992c;
  189. background: -webkit-linear-gradient(top, #0090ff 0%, #0062be 100%);
  190. color: #fff;
  191. border-radius: 4px;
  192. box-shadow: 0 1px rgba(255,255,255,0.08) inset;
  193. text-shadow: 0px -1px rgba(255,255,255,0.08);
  194. font-weight: normal;
  195. }
  196. .btn-important .icon {
  197. filter: brightness(3);
  198. }
  199. .btn-important:active {
  200. background: linear-gradient(0deg, #e4992c 0%, #d18114 100%) #e4992c;
  201. background: -webkit-linear-gradient(bottom, #e4992c 0%, #d18114 100%);
  202. }
  203. .btn-attention {
  204. background: #e95b57;
  205. background: linear-gradient(to bottom, #e95b57, #bd362f);
  206. background: -webkit-linear-gradient(top, #e95b57 0%, #bd362f 100%);
  207. color: #fff;
  208. border: 1px solid #c44742;
  209. text-shadow: 0px -1px 0px #666;
  210. }
  211. .btn-attention:hover {
  212. background: linear-gradient(to bottom, #d14641, #bd362f);
  213. background: -webkit-linear-gradient(top, #d14641 0%, #bd362f 100%);
  214. }
  215. .btn-attention:active {
  216. background: #bd362f;
  217. box-shadow: none;
  218. }
  219. .btn[type="reset"] {
  220. background: linear-gradient(-180deg, #222 0%, #171717 100%) #171717;
  221. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  222. color: #fff;
  223. box-shadow: 0 -1px rgba(255,255,255,0.08) inset;
  224. }
  225. /*=== Navigation */
  226. .nav-list {
  227. font-size: 0.9rem;
  228. }
  229. .nav-list .item,
  230. .nav-list .item.nav-header {
  231. min-height: 2.5em;
  232. line-height: 2.5;
  233. }
  234. .nav-list .item a:hover {
  235. text-shadow: 0 0 2px rgba(255,255,255,0.28);
  236. color: #fff;
  237. }
  238. .nav-list .item.active a {
  239. margin: 0;
  240. background: linear-gradient(-180deg, #0090ff 0%, #0062be 100%) #e4992c;
  241. background: -webkit-linear-gradient(top, #0090ff 0%, #0062be 100%);
  242. color: #fff;
  243. border-color: -moz-use-text-color -moz-use-text-color #171717;
  244. }
  245. .nav-list .item > a {
  246. padding: 0 1rem;
  247. color: #ccc;
  248. }
  249. .nav-list a:hover {
  250. text-decoration: none;
  251. }
  252. .nav-list .nav-header {
  253. padding: 0 1rem;
  254. background: transparent;
  255. color: #222;
  256. }
  257. .nav-list .nav-form {
  258. padding: 3px;
  259. text-align: center;
  260. }
  261. /*=== Dropdown */
  262. .dropdown-menu {
  263. margin: 5px 0 0;
  264. padding: 5px 0;
  265. background: #222;
  266. font-size: 0.8rem;
  267. border: 1px solid #171717;
  268. border-radius: 4px;
  269. box-shadow: 0 0 3px #000;
  270. text-align: right;
  271. }
  272. .dropdown-menu::after {
  273. background: #222;
  274. width: 10px;
  275. height: 10px;
  276. border-top: 1px solid #171717;
  277. border-right: 1px solid #171717;
  278. position: absolute;
  279. top: -6px;
  280. left: 13px;
  281. z-index: -10;
  282. transform: rotate(-45deg);
  283. }
  284. .dropdown-header,
  285. .dropdown-section .dropdown-section-title {
  286. padding: 0 5px 5px;
  287. color: #ccc;
  288. font-weight: bold;
  289. }
  290. .dropdown-menu .icon {
  291. filter: grayscale(100%) brightness(2.5);
  292. }
  293. .dropdown-menu .item > a,
  294. .dropdown-menu .item > span,
  295. .dropdown-menu .item > .as-link {
  296. padding: 0 22px;
  297. line-height: 2.5em;
  298. color: #ccc;
  299. font-size: 0.8rem;
  300. }
  301. .dropdown-menu > .item > label {
  302. color: #ccc;
  303. }
  304. .dropdown-menu .dropdown-section .item > a,
  305. .dropdown-menu .dropdown-section .item > span,
  306. .dropdown-menu .dropdown-section .item > .as-link {
  307. padding-right: 2rem;
  308. }
  309. .dropdown-menu .dropdown-section .item:last-child {
  310. margin-bottom: 0.5rem;
  311. }
  312. .dropdown-menu .item > a:hover,
  313. .dropdown-menu .item > button:hover,
  314. .dropdown-menu .item > label:hover:not(.noHover) {
  315. background: linear-gradient(-180deg, #0090ff 0%, #0062be 100%) #e4992c;
  316. background: -webkit-linear-gradient(top, #0090ff 0%, #0062be 100%);
  317. color: #fff;
  318. }
  319. .dropdown-menu > .item[aria-checked="true"] > a::before {
  320. font-weight: bold;
  321. margin: 0 -14px 0 0;
  322. }
  323. .item ~ .dropdown-header,
  324. .item.separator {
  325. border-top-color: rgba(255,255,255,0.08);
  326. }
  327. /*=== Alerts */
  328. .alert {
  329. background: #f4f4f4;
  330. color: #aaa;
  331. font-size: 0.9em;
  332. border: 1px solid #ccc;
  333. border-left: 1px solid #aaa;
  334. border-bottom: 1px solid #aaa;
  335. border-radius: 5px;
  336. text-shadow: 0 0 1px #eee;
  337. }
  338. .alert-head {
  339. font-size: 1.15em;
  340. }
  341. .alert > a {
  342. color: inherit;
  343. text-decoration: underline;
  344. }
  345. .alert-warn {
  346. background: #ffe;
  347. color: #c95;
  348. border: 1px solid #eeb;
  349. }
  350. .alert-success {
  351. background: #dfd;
  352. color: #484;
  353. border: 1px solid #cec;
  354. }
  355. .alert-error {
  356. background: #fdd;
  357. color: #844;
  358. border: 1px solid #ecc;
  359. }
  360. /*=== Pagination */
  361. .pagination {
  362. background: #fafafa;
  363. color: #333;
  364. }
  365. .pagination .item a {
  366. color: #333;
  367. }
  368. .pagination .item a:hover {
  369. background: #ddd;
  370. color: inherit;
  371. }
  372. .pagination .item {
  373. border-top: 1px solid #ddd;
  374. border-bottom: 1px solid #ddd;
  375. }
  376. /*=== Boxes */
  377. .box {
  378. background: #f9f7f4;
  379. border-radius: 4px;
  380. box-shadow: 0 1px #fff;
  381. }
  382. .box .box-title {
  383. margin: 0;
  384. padding: 5px 10px;
  385. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #171717;
  386. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  387. color: #888;
  388. font-size: 1.1rem;
  389. border-radius: 4px 4px 0 0;
  390. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  391. text-shadow: 0 1px #ccc;
  392. font-weight: normal;
  393. }
  394. .box .box-title .configure {
  395. margin-left: 4px;
  396. }
  397. .box .box-content {
  398. padding-right: 30px;
  399. max-height: 260px;
  400. }
  401. .box .box-content .item {
  402. font-size: 0.9rem;
  403. line-height: 2.5em;
  404. }
  405. /*=== Tree */
  406. .tree {
  407. margin: 10px 0;
  408. }
  409. .tree-folder-title {
  410. position: relative;
  411. padding: 0 10px;
  412. line-height: 2.5rem;
  413. font-size: 0.9rem;
  414. }
  415. .tree-folder-title .title {
  416. background: inherit;
  417. color: #fff;
  418. }
  419. .tree-folder-title .title:hover {
  420. text-decoration: none;
  421. }
  422. .tree-folder.active .tree-folder-title {
  423. background: linear-gradient(-180deg, #222 0%, #171717 100%) #171717;
  424. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  425. color: #fff;
  426. box-shadow: 0px 1px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset;
  427. text-shadow: 0 0 2px rgba(255,255,255,0.28);
  428. }
  429. .tree-folder.active > .tree-folder-title > a.title {
  430. color: #0090ff;
  431. text-shadow: 0 1px rgba(255,255,255,0.08);
  432. }
  433. .tree-folder-items {
  434. padding: 8px 0;
  435. background: #171717;
  436. box-shadow: 0 4px 4px #171717 inset, 0 1px rgba(255,255,255,0.08),0 -1px rgba(255,255,255,0.08);
  437. }
  438. .tree-folder-items > .item {
  439. font-size: 0.8rem;
  440. }
  441. .tree-folder-items > .item.active {
  442. margin: 0px 5px;
  443. background: linear-gradient(-180deg, #222 0%, #171717 100%) #171717;
  444. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  445. border-radius: 4px;
  446. box-shadow: 0px 1px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset, 0 2px 2px #111;
  447. }
  448. .tree-folder-items > .item > a {
  449. text-decoration: none;
  450. color: #fff;
  451. font-size: 0.92em;
  452. }
  453. .tree-folder-items > .item.active > a {
  454. color: #0090ff;
  455. }
  456. /*=== Scrollbar */
  457. @supports (scrollbar-width: thin) {
  458. #sidebar {
  459. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
  460. }
  461. #sidebar:hover {
  462. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
  463. }
  464. }
  465. @supports not (scrollbar-width: thin) {
  466. #sidebar::-webkit-scrollbar-thumb {
  467. background: rgba(255, 255, 255, 0.1);
  468. }
  469. #sidebar:hover::-webkit-scrollbar-thumb {
  470. background: rgba(255, 255, 255, 0.3);
  471. }
  472. }
  473. /*=== STRUCTURE */
  474. /*===============*/
  475. /*=== Header */
  476. .header {
  477. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  478. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  479. border-bottom: solid 1px #bdb7ae;
  480. box-shadow: 0 -1px rgba(255,255,255,0.28) inset;
  481. }
  482. .header > .item {
  483. padding: 0;
  484. vertical-align: middle;
  485. text-align: center;
  486. }
  487. .header > .item.title .logo {
  488. margin: 10px 0;
  489. height: 40px;
  490. filter: grayscale(100%) brightness(0%);
  491. }
  492. .header > .item.title {
  493. width: 250px;
  494. }
  495. .header > .item.title a {
  496. text-shadow: 0 1px #fff;
  497. }
  498. .header > .item.search input {
  499. width: 230px;
  500. }
  501. .header .item.search input:focus {
  502. width: 350px;
  503. }
  504. /*=== Body */
  505. #global {
  506. background: #f9f7f4;
  507. /* Header : 60px + 1px border bottom */
  508. height: calc(100% - 61px);
  509. }
  510. .aside {
  511. background: #222;
  512. width: 235px;
  513. box-shadow: 0 2px 2px #171717 inset;
  514. }
  515. .aside.aside_feed {
  516. padding: 10px 0;
  517. text-align: center;
  518. }
  519. .aside.aside_feed .tree {
  520. margin: 10px 0 50px;
  521. }
  522. /*=== Aside main page (categories) */
  523. .aside_feed .btn-important {
  524. border: none;
  525. }
  526. .aside.aside_feed .tree-folder-items .item.feed.active {
  527. padding: 0 10px;
  528. }
  529. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  530. background-color: #171717;
  531. color: #ccc;
  532. border-color: #999;
  533. }
  534. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  535. background-color: #222;
  536. color: #ccc;
  537. border-color: #999;
  538. }
  539. .aside.aside_feed .feed.active .item-title:not([data-unread="0"])::after {
  540. left: 5px;
  541. }
  542. /*=== Aside main page (feeds) */
  543. .feed.item.empty,
  544. .feed.item.empty > a {
  545. color: #e67e22;
  546. }
  547. .feed.item.error,
  548. .feed.item.error > a {
  549. color: #bd362f;
  550. }
  551. .aside_feed .tree-folder-items .dropdown-menu::after {
  552. right: 2px;
  553. }
  554. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  555. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  556. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  557. border-radius: 3px;
  558. }
  559. /*=== Configuration pages */
  560. .post {
  561. padding: 10px 50px;
  562. font-size: 0.9em;
  563. }
  564. .post form {
  565. margin: 10px 0;
  566. }
  567. .post.content {
  568. max-width: 550px;
  569. }
  570. /*=== Prompt (centered) */
  571. .prompt .form-group {
  572. margin-bottom: 1rem;
  573. }
  574. .prompt .form-group::after {
  575. display: none;
  576. }
  577. .prompt .form-group.form-group-actions {
  578. display: flex;
  579. margin-top: 2rem;
  580. align-items: center;
  581. justify-content: space-between;
  582. }
  583. .prompt input#username,.prompt input#passwordPlain {
  584. background: #fff;
  585. border: solid 1px #ccc;
  586. box-shadow: 0 4px -4px #ccc inset,0px 1px rgba(255, 255, 255, 0.08);
  587. }
  588. .prompt input#username:focus,.prompt input#passwordPlain:focus {
  589. border: solid 1px #0062be;
  590. box-shadow: 0 0 3px #0062be;
  591. }
  592. .prompt .btn.btn-important {
  593. padding-right: 1.5rem;
  594. padding-left: 1.5rem;
  595. font-size: 1.1rem;
  596. }
  597. /*=== New article notification */
  598. #new-article {
  599. background: #0084cc;
  600. text-align: center;
  601. font-size: 0.9em;
  602. }
  603. #new-article > a {
  604. line-height: 3em;
  605. color: #fff;
  606. font-weight: bold;
  607. }
  608. #new-article > a:hover {
  609. text-decoration: none;
  610. background: #06c;
  611. }
  612. /*=== Day indication */
  613. .day {
  614. padding: 0 10px;
  615. background: #f9f7f4;
  616. color: #666;
  617. box-shadow: 0 -1px #ccc, 0 -1px rgba(255,255,255,0.28) inset;
  618. font-style: italic;
  619. line-height: 3em;
  620. text-shadow: 0 1px rgba(255,255,255,0.28);
  621. text-align: center;
  622. }
  623. #new-article + .day {
  624. border-top: none;
  625. }
  626. .day .name {
  627. display: none;
  628. }
  629. /*=== Index menu */
  630. .nav_menu {
  631. padding: 5px 0;
  632. background: linear-gradient(0deg, #ede7de 0%, #c2bcb3 100%) #ede7de;
  633. background: -webkit-linear-gradient(bottom, #ede7de 0%, #c2bcb3 100%);
  634. border-bottom: 1px solid #ccc;
  635. box-shadow: 0 -1px rgba(255, 255, 255, 0.28) inset;
  636. text-align: center;
  637. }
  638. #panel >.nav_menu {
  639. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  640. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  641. }
  642. #panel > .nav_menu > #nav_menu_read_all {
  643. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  644. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  645. border: 1px solid #ccc;
  646. border-radius: 4px;
  647. box-shadow: 0px 1px #fff;
  648. }
  649. #panel > .nav_menu > #nav_menu_read_all .dropdown > .btn.dropdown-toggle {
  650. border: none;
  651. border-right: solid 1px #ccc;
  652. border-radius: 4px 0 0 4px;
  653. }
  654. /*=== Feed articles */
  655. .flux_content {
  656. background: #fff;
  657. }
  658. .flux {
  659. background: #f9f7f4;
  660. }
  661. .flux .flux_header:hover {
  662. background: #f9f7f4;
  663. }
  664. .flux:not(.current):hover .item.title {
  665. background: #f9f7f4;
  666. }
  667. .flux.current .flux .item.title a {
  668. text-shadow: 0 0 2px #ccc;
  669. }
  670. .flux.favorite {
  671. background: #fff6da;
  672. }
  673. .flux.favorite:not(.current):hover {
  674. background: #f9f7f4;
  675. }
  676. .flux.favorite:not(.current):hover .item.title {
  677. background: #f9f7f4;
  678. }
  679. .flux.current {
  680. background: linear-gradient(0deg, #dad4cb 0%, #fff 100%) #dad4cb;
  681. background: -webkit-linear-gradient(bottom, #dad4cb 0%, #fff 100%);
  682. border-right: solid 4px #0062bf;
  683. box-shadow: 0 -1px #fff inset, 0 2px #ccc;
  684. }
  685. .flux .item.title a {
  686. color: #b4b3b1;
  687. }
  688. .flux.not_read .item.title a,
  689. .flux.favorite .item.title a {
  690. color: #333;
  691. }
  692. .flux.not_read:not(.current):hover .item.title a {
  693. color: #50504f;
  694. }
  695. .flux.current .item.title a {
  696. color: #0f0f0f;
  697. }
  698. .flux_header {
  699. font-size: 0.8rem;
  700. border-top: 1px solid #ddd;
  701. box-shadow: 0 -1px rgba(255,255,255,0.28) inset;
  702. cursor: pointer;
  703. }
  704. .flux_header .title {
  705. font-size: 0.9rem;
  706. }
  707. .flux .item.date {
  708. color: #666;
  709. font-size: 0.7rem;
  710. }
  711. .flux .bottom {
  712. font-size: 0.8rem;
  713. text-align: center;
  714. }
  715. /*=== Content of feed articles */
  716. .content {
  717. padding: 20px 10px;
  718. }
  719. .content > h1.title > a {
  720. color: #000;
  721. }
  722. .content hr {
  723. margin: 30px 10px;
  724. background: #ddd;
  725. height: 1px;
  726. border: 0;
  727. box-shadow: 0 2px 5px #ccc;
  728. }
  729. .content pre {
  730. margin: 10px auto;
  731. padding: 10px 20px;
  732. overflow: auto;
  733. background: #222;
  734. color: #fff;
  735. font-size: 0.9rem;
  736. border-radius: 3px;
  737. }
  738. .content code {
  739. padding: 2px 5px;
  740. background: #fafafa;
  741. color: #d14;
  742. border: 1px solid #eee;
  743. border-radius: 3px;
  744. }
  745. .content pre code {
  746. background: transparent;
  747. color: #fff;
  748. border: none;
  749. }
  750. .content blockquote {
  751. margin: 0;
  752. padding: 5px 20px;
  753. background: #fafafa;
  754. display: block;
  755. color: #333;
  756. border-top: 1px solid #ddd;
  757. border-bottom: 1px solid #ddd;
  758. }
  759. .content blockquote p {
  760. margin: 0;
  761. }
  762. /*=== Notification and actualize notification */
  763. .notification {
  764. background: #222;
  765. color: #fff;
  766. font-size: 0.9em;
  767. border: none;
  768. border-radius: 0 0 6px 6px;
  769. box-shadow: 0px 0px 4px rgba(0,0,0,0.45), 0 -1px rgba(255,255,255,0.08) inset, 0 2px 2px #171717 inset;
  770. text-align: center;
  771. font-weight: bold;
  772. position: absolute;
  773. top: 0;
  774. vertical-align: middle;
  775. }
  776. .notification.good {
  777. color: #fff;
  778. }
  779. .notification.bad {
  780. background: #222;
  781. color: #eb2901;
  782. }
  783. .notification a.close:hover {
  784. background: rgba(255,255,255,0.2);
  785. }
  786. .notification a.close:hover .icon {
  787. filter: brightness(2);
  788. }
  789. /*=== "Load more" part */
  790. #bigMarkAsRead {
  791. background: #f9f7f4;
  792. color: #666;
  793. box-shadow: 0 1px rgba(255,255,255,0.28)inset;
  794. text-align: center;
  795. text-decoration: none;
  796. text-shadow: 0 -1px 0 #aaa;
  797. }
  798. #bigMarkAsRead:hover {
  799. background: #f9f7f4;
  800. background: radial-gradient(circle at 50% -25% , #ccc 0%, #f9f7f4 50%);
  801. color: #000;
  802. }
  803. #bigMarkAsRead:hover .bigTick {
  804. text-shadow: 0 0 10px #666;
  805. }
  806. /*=== Navigation menu (for articles) */
  807. #nav_entries {
  808. background: linear-gradient(-180deg, #222 0%, #171717 100%) #222;
  809. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  810. width: 235px;
  811. border-top: 1px solid #171717;
  812. box-shadow: 0 1px rgba(255,255,255,0.08) inset, 0 -2px 2px #171717;
  813. text-align: center;
  814. line-height: 3em;
  815. table-layout: fixed;
  816. }
  817. /*=== READER VIEW */
  818. /*================*/
  819. #stream.reader .flux {
  820. background: #f9f7f4;
  821. color: #333;
  822. border: none;
  823. }
  824. #stream.reader .flux_content {
  825. background: none;
  826. }
  827. #stream.reader .flux .content {
  828. background-color: #fff;
  829. border-color: #ddd;
  830. }
  831. #stream.reader .flux .author {
  832. margin: 0 0 10px;
  833. color: #666;
  834. font-size: 90%;
  835. }
  836. /*=== GLOBAL VIEW */
  837. /*================*/
  838. #stream.global {
  839. padding: 24px 0;
  840. }
  841. .box.category .box-title {
  842. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #171717;
  843. font-size: 1.2rem;
  844. border-radius: none;
  845. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  846. line-height: 2em;
  847. text-shadow: 0 1px #ccc;
  848. }
  849. .box.category .box-title .title {
  850. font-weight: normal;
  851. text-decoration: none;
  852. text-align: right;
  853. color: #888;
  854. }
  855. .box.category:not([data-unread="0"]) .box-title .title {
  856. color: #222;
  857. font-weight: bold;
  858. }
  859. .box.category .title:not([data-unread="0"])::after {
  860. background: none;
  861. border: 0;
  862. position: absolute;
  863. top: 5px; left: 10px;
  864. font-weight: bold;
  865. }
  866. .box.category .item.feed:not(.empty):not(.error) .item-title {
  867. color: #222;
  868. }
  869. #stream.global .feed .item-title:not([data-unread="0"])::after {
  870. margin-top: 1rem;
  871. }
  872. /*=== PANEL */
  873. /*===========*/
  874. #panel {
  875. background: #f9f7f4;
  876. border-radius: 8px;
  877. box-shadow: 0px 0px 4px #000;
  878. }
  879. /*=== DIVERS */
  880. /*===========*/
  881. .aside.aside_feed .nav-form input,.aside.aside_feed .nav-form select {
  882. width: 130px;
  883. }
  884. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  885. left: -20px;
  886. }
  887. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  888. left: 33px;
  889. }
  890. /*=== STATISTICS */
  891. /*===============*/
  892. .stat {
  893. margin: 10px 0 20px;
  894. }
  895. .stat th,
  896. .stat td,
  897. .stat tr {
  898. border: none;
  899. }
  900. .stat > table td,
  901. .stat > table th {
  902. background: rgba(255,255,255,0.38);
  903. border-bottom: 1px solid #ccc;
  904. box-shadow: 0 1px #fff;
  905. }
  906. #slider.active {
  907. background: #f8f8f8;
  908. box-shadow: 4px 0 4px rgba(15, 15, 15, 0.55);
  909. }
  910. #close-slider.active {
  911. background: rgba(15, 15, 15, 0.35);
  912. }
  913. /*=== MOBILE */
  914. /*===========*/
  915. @media screen and (max-width: 840px) {
  916. .form-group .group-name {
  917. padding-bottom: 0;
  918. }
  919. .header {
  920. display: table;
  921. }
  922. .header > .item.title .logo {
  923. height: 24px;
  924. }
  925. .nav-login {
  926. display: none;
  927. }
  928. .aside {
  929. width: 0;
  930. border-top: none;
  931. box-shadow: -3px 0 3px #000;
  932. transition: width 200ms linear;
  933. }
  934. .aside:target {
  935. width: 235px;
  936. }
  937. .aside .toggle_aside,
  938. #panel .close,
  939. .dropdown-menu .toggle_aside,
  940. #slider .toggle_aside {
  941. background: #171717;
  942. box-shadow: 0 1px rgba(255,255,255,0.08);
  943. }
  944. .aside.aside_feed {
  945. padding: 0;
  946. }
  947. .nav_menu .btn {
  948. margin: 5px 10px;
  949. }
  950. .nav_menu .stick {
  951. margin: 0 10px;
  952. }
  953. .nav_menu .stick .btn {
  954. margin: 5px 0;
  955. }
  956. .nav_menu .search {
  957. display: none;
  958. }
  959. .nav_menu .search input {
  960. max-width: 97%;
  961. width: 90px;
  962. }
  963. .nav_menu .search input:focus {
  964. width: 400px;
  965. }
  966. .dropdown-target:target ~ .dropdown-toggle::after {
  967. background-color: #222;
  968. border-top: 1px solid #171717;
  969. border-right: 1px solid #171717;
  970. left: 13px;
  971. }
  972. .day .name {
  973. display: none;
  974. }
  975. .notification a.close {
  976. background: transparent;
  977. display: block;
  978. right: 0;
  979. }
  980. .notification a.close:hover {
  981. opacity: 0.5;
  982. }
  983. .notification a.close .icon {
  984. display: none;
  985. }
  986. #nav_entries {
  987. width: 100%;
  988. }
  989. .post {
  990. padding-right: 15px;
  991. padding-left: 15px;
  992. }
  993. #close-slider.active {
  994. background: #171717;
  995. box-shadow: 0 1px rgba(255,255,255,0.08)
  996. }
  997. }
  998. @media (max-width: 700px) {
  999. .nav_menu .search {
  1000. display: inline-block;
  1001. }
  1002. }