BlueLagoon.css 21 KB

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