BlueLagoon.css 23 KB

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