BlueLagoon.css 21 KB

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