BlueLagoon.css 21 KB

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