BlueLagoon.css 24 KB

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