4
0

BlueLagoon.css 24 KB

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