BlueLagoon.css 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221
  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-title .configure,
  481. .box .box-content .item .configure {
  482. visibility: hidden;
  483. }
  484. .box .box-title:hover .configure,
  485. .box .box-content .item:hover .configure {
  486. visibility: visible;
  487. }
  488. /*=== Tree */
  489. .tree {
  490. margin: 10px 0;
  491. }
  492. .tree-folder-title {
  493. position: relative;
  494. padding: 0 10px;
  495. line-height: 2.5rem;
  496. font-size: 0.9rem;
  497. }
  498. .tree-folder-title .title {
  499. background: inherit;
  500. color: #fff;
  501. }
  502. .tree-folder-title .title:hover {
  503. text-decoration: none;
  504. }
  505. .tree-folder.active .tree-folder-title {
  506. background: linear-gradient(180deg, #222 0%, #171717 100%) #171717;
  507. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  508. box-shadow: 0px 1px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset;
  509. text-shadow: 0 0 2px rgba(255,255,255,0.28);
  510. color: #fff;
  511. }
  512. .tree-folder.active > .tree-folder-title > a.title{
  513. color: #0090FF;
  514. text-shadow: 0 1px rgba(255,255,255,0.08);
  515. }
  516. .tree-folder-items {
  517. background: #171717;
  518. padding: 8px 0;
  519. box-shadow: 0 4px 4px #171717 inset, 0 1px rgba(255,255,255,0.08),0 -1px rgba(255,255,255,0.08);
  520. }
  521. .tree-folder-items > .item {
  522. padding: 0 10px;
  523. line-height: 2.5rem;
  524. font-size: 0.8rem;
  525. }
  526. .tree-folder-items > .item.active {
  527. background: linear-gradient(180deg, #222 0%, #171717 100%) #171717;
  528. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  529. border-radius: 4px;
  530. margin: 0px 8px;
  531. box-shadow: 0px 1px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset, 0 2px 2px #111;
  532. }
  533. .tree-folder-items > .item > a {
  534. text-decoration: none;
  535. color: #fff;
  536. font-size: 0.92em;
  537. }
  538. .tree-folder-items > .item.active > a {
  539. color: #0090FF
  540. }
  541. /*=== Scrollbar */
  542. @supports (scrollbar-width: thin) {
  543. #sidebar {
  544. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
  545. }
  546. #sidebar:hover {
  547. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
  548. }
  549. }
  550. @supports not (scrollbar-width: thin) {
  551. #sidebar::-webkit-scrollbar-thumb {
  552. background: rgba(255, 255, 255, 0.1);
  553. }
  554. #sidebar:hover::-webkit-scrollbar-thumb {
  555. background: rgba(255, 255, 255, 0.3);
  556. }
  557. }
  558. /*=== STRUCTURE */
  559. /*===============*/
  560. /*=== Header */
  561. .header {
  562. background: linear-gradient(0deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
  563. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #FFF 100%);
  564. border-bottom: solid 1px #BDB7AE;
  565. box-shadow: 0 -1px rgba(255,255,255,0.28) inset;
  566. }
  567. .header > .item {
  568. padding: 0;
  569. vertical-align: middle;
  570. text-align: center;
  571. }
  572. .header > .item.title .logo {
  573. height: 40px;
  574. width: 40px;
  575. }
  576. .header > .item.title{
  577. width: 250px;
  578. }
  579. .header > .item.title h1 {
  580. margin: 10px 0;
  581. }
  582. .header > .item.title h1 a {
  583. text-decoration: none;
  584. font-size: 28px;
  585. color:#222;
  586. text-shadow: 0 1px #fff;
  587. }
  588. .header > .item.search input {
  589. width: 230px;
  590. }
  591. .header .item.search input:focus {
  592. width: 350px;
  593. }
  594. /*=== Body */
  595. #global {
  596. background:#F9F7F4;
  597. /* Header : 60px + 1px border bottom */
  598. height: calc(100% - 61px);
  599. }
  600. .aside {
  601. box-shadow: 0 2px 2px #171717 inset;
  602. background: #222;
  603. width: 235px;
  604. }
  605. .aside.aside_feed {
  606. padding: 10px 0;
  607. text-align: center;
  608. }
  609. .aside.aside_feed .tree {
  610. margin: 10px 0 50px;
  611. }
  612. /*=== Aside main page (categories) */
  613. .aside_feed .tree-folder-title > .title:not([data-unread="0"])::after {
  614. position: absolute;
  615. right: 3px;
  616. padding: 1px 5px;
  617. color: #fff;
  618. text-shadow: 0 1px rgba(255,255,255,0.08);
  619. }
  620. .aside_feed .btn-important {
  621. border: none;
  622. }
  623. /*=== Aside main page (feeds) */
  624. .feed.item.empty,
  625. .feed.item.empty > a {
  626. color: #e67e22;
  627. }
  628. .feed.item.error,
  629. .feed.item.error > a {
  630. color: #BD362F;
  631. }
  632. .aside_feed .tree-folder-items .dropdown-menu::after {
  633. left: 2px;
  634. }
  635. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  636. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  637. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  638. border-radius: 3px;
  639. }
  640. /*=== Configuration pages */
  641. .post {
  642. padding: 10px 50px;
  643. font-size: 0.9em;
  644. }
  645. .post form {
  646. margin: 10px 0;
  647. }
  648. .post.content {
  649. max-width: 550px;
  650. }
  651. /*=== Prompt (centered) */
  652. .prompt {
  653. text-align: center;
  654. padding: 14px 0px;
  655. text-shadow: 0 1px rgba(255,255,255,0.08);
  656. }
  657. .prompt label {
  658. text-align: left;
  659. }
  660. .prompt form {
  661. margin: 10px auto 20px auto;
  662. width: 180px;
  663. }
  664. .prompt input {
  665. margin: 5px auto;
  666. width: 100%;
  667. }
  668. .prompt p {
  669. margin: 20px 0;
  670. }
  671. .prompt input#username,.prompt input#passwordPlain{
  672. border:solid 1px #ccc;
  673. box-shadow: 0 4px -4px #ccc inset,0px 1px rgba(255, 255, 255, 0.08);
  674. background:#fff;
  675. }
  676. .prompt input#username:focus,.prompt input#passwordPlain:focus{
  677. border: solid 1px #0062BE;
  678. box-shadow: 0 0 3px #0062BE;
  679. }
  680. /*=== New article notification */
  681. #new-article {
  682. background: #0084CC;
  683. text-align: center;
  684. font-size: 0.9em;
  685. }
  686. #new-article:hover {
  687. background: #0066CC;
  688. }
  689. #new-article > a {
  690. line-height: 3em;
  691. color: #fff;
  692. font-weight: bold;
  693. }
  694. #new-article > a:hover {
  695. text-decoration: none;
  696. }
  697. /*=== Day indication */
  698. .day {
  699. padding: 0 10px;
  700. font-style:italic;
  701. line-height: 3em;
  702. box-shadow: 0 -1px #ccc, 0 -1px rgba(255,255,255,0.28) inset;
  703. background: #F9F7F4;
  704. color: #666;
  705. text-shadow: 0 1px rgba(255,255,255,0.28);
  706. text-align: center;
  707. }
  708. #new-article + .day {
  709. border-top: none;
  710. }
  711. .day .name {
  712. display: none;
  713. }
  714. /*=== Index menu */
  715. .nav_menu {
  716. background: linear-gradient(0deg, #EDE7DE 0%, #C2BCB3 100%) #EDE7DE;
  717. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #C2BCB3 100%);
  718. border-bottom: 1px solid #ccc;
  719. box-shadow:0 -1px rgba(255, 255, 255, 0.28) inset;
  720. text-align: center;
  721. padding: 5px 0;
  722. }
  723. #panel >.nav_menu{
  724. background: linear-gradient(0deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
  725. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #FFF 100%);
  726. }
  727. #panel > .nav_menu > #nav_menu_read_all{
  728. background: linear-gradient(0deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
  729. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #FFF 100%);
  730. border-radius: 4px;
  731. border: 1px solid #CCC;
  732. box-shadow: 0px 1px #FFF;
  733. }
  734. #panel > .nav_menu > #nav_menu_read_all .dropdown > .btn.dropdown-toggle {
  735. border-radius: 0 4px 4px 0;
  736. border:none;
  737. border-left: solid 1px #ccc;
  738. }
  739. /*=== Feed articles */
  740. .flux_content {
  741. background: #FFF;
  742. }
  743. .flux {
  744. background: #F9F7F4;
  745. }
  746. .flux:hover {
  747. background: #F9F7F4;
  748. }
  749. .flux:not(.current):hover .item.title {
  750. background: #F9F7F4;
  751. }
  752. .flux.current .flux .item.title a {
  753. text-shadow:0 0 2px #ccc;
  754. }
  755. .flux.not_read:not(.current):hover .item.title {
  756. opacity:0.85;
  757. }
  758. .flux.favorite {
  759. background: #FFF6DA;
  760. }
  761. .flux.favorite:not(.current):hover{
  762. background: #F9F7F4;
  763. }
  764. .flux.favorite:not(.current):hover .item.title {
  765. background: #F9F7F4;
  766. }
  767. .flux.current {
  768. background: linear-gradient(0deg, #DAD4CB 0%, #FFF 100%) #DAD4CB;
  769. background: -webkit-linear-gradient(bottom, #DAD4CB 0%, #FFF 100%);
  770. box-shadow: 0 -1px #fff inset, 0 2px #ccc;
  771. border-left: solid 4px #0062BF;
  772. }
  773. .flux .item.title {
  774. opacity: 0.35;
  775. }
  776. .flux.favorite .item.title {
  777. opacity: 1;
  778. }
  779. .flux.not_read .item.title {
  780. opacity: 1;
  781. }
  782. .flux.current .item.title a {
  783. color: #0f0f0f;
  784. }
  785. .flux .item.title a {
  786. color: #333;
  787. }
  788. .flux_header {
  789. border-top: 1px solid #ddd;
  790. font-size: 0.8rem;
  791. cursor: pointer;
  792. box-shadow: 0 -1px rgba(255,255,255,0.28) inset;
  793. }
  794. .flux_header .title {
  795. font-size: 0.9rem;
  796. }
  797. .flux .website .favicon {
  798. padding: 5px;
  799. }
  800. .flux .date {
  801. color: #666;
  802. font-size: 0.7rem;
  803. }
  804. .flux .bottom {
  805. font-size: 0.8rem;
  806. text-align: center;
  807. }
  808. /*=== Content of feed articles */
  809. .content {
  810. padding: 20px 10px;
  811. }
  812. .content > h1.title > a {
  813. color: #000;
  814. }
  815. .content hr {
  816. margin: 30px 10px;
  817. height: 1px;
  818. background: #ddd;
  819. border: 0;
  820. box-shadow: 0 2px 5px #ccc;
  821. }
  822. .content pre {
  823. margin: 10px auto;
  824. padding: 10px 20px;
  825. overflow: auto;
  826. background: #222;
  827. color: #fff;
  828. font-size: 0.9rem;
  829. border-radius: 3px;
  830. }
  831. .content code {
  832. padding: 2px 5px;
  833. color: #dd1144;
  834. background: #fafafa;
  835. border: 1px solid #eee;
  836. border-radius: 3px;
  837. }
  838. .content pre code {
  839. background: transparent;
  840. color: #fff;
  841. border: none;
  842. }
  843. .content blockquote {
  844. display: block;
  845. margin: 0;
  846. padding: 5px 20px;
  847. border-top: 1px solid #ddd;
  848. border-bottom: 1px solid #ddd;
  849. background: #fafafa;
  850. color: #333;
  851. }
  852. .content blockquote p {
  853. margin: 0;
  854. }
  855. /*=== Notification and actualize notification */
  856. .notification {
  857. padding: 0 0 0 5px;
  858. text-align: center;
  859. background:#222;
  860. border: none;
  861. border-radius: 0 0 6px 6px;
  862. 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;
  863. color:#fff;
  864. font-weight: bold;
  865. font-size: 0.9em;
  866. line-height: 3em;
  867. position:absolute;
  868. top:0;
  869. z-index: 10;
  870. vertical-align: middle;
  871. }
  872. .notification.good {
  873. color: #fff;
  874. }
  875. .notification.bad {
  876. background: #222222;
  877. color: #EB2901;
  878. }
  879. .notification a.close {
  880. padding: 0 15px;
  881. line-height: 3em;
  882. }
  883. .notification#actualizeProgress {
  884. line-height: 2em;
  885. }
  886. /*=== "Load more" part */
  887. #bigMarkAsRead {
  888. text-align: center;
  889. text-decoration: none;
  890. text-shadow: 0 -1px 0 #aaa;
  891. color: #666;
  892. background: #F9F7F4;
  893. box-shadow: 0 1px rgba(255,255,255,0.28)inset;
  894. }
  895. #bigMarkAsRead:hover {
  896. color: #000;
  897. background: #F9F7F4;
  898. background: radial-gradient(circle at 50% -25% , #ccc 0%, #F9F7F4 50%);
  899. }
  900. #bigMarkAsRead:hover .bigTick {
  901. text-shadow: 0 0 10px #666;
  902. }
  903. /*=== Navigation menu (for articles) */
  904. #nav_entries {
  905. background: linear-gradient(180deg, #222 0%, #171717 100%) #222;
  906. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  907. border-top: 1px solid #171717;
  908. text-align: center;
  909. line-height: 3em;
  910. table-layout: fixed;
  911. box-shadow: 0 1px rgba(255,255,255,0.08) inset, 0 -2px 2px #171717;
  912. width:235px;
  913. }
  914. /*=== READER VIEW */
  915. /*================*/
  916. #stream.reader .flux {
  917. padding: 0 0 50px;
  918. border: none;
  919. background: #f0f0f0;
  920. color: #333;
  921. }
  922. #stream.reader .flux .author {
  923. margin: 0 0 10px;
  924. font-size: 90%;
  925. color: #666;
  926. }
  927. /*=== GLOBAL VIEW */
  928. /*================*/
  929. #stream.global {
  930. padding: 24px 0;
  931. }
  932. .box.category .box-title {
  933. background: linear-gradient(0deg, #EDE7DE 0%, #fff 100%) #171717;
  934. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #fff 100%);
  935. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  936. border-radius: none;
  937. line-height: 2em;
  938. font-size: 1.2rem;
  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 {
  948. }
  949. .box.category:not([data-unread="0"]) .box-title:active {
  950. }
  951. .box.category:not([data-unread="0"]) .box-title .title {
  952. color: #222;
  953. font-weight: bold;
  954. }
  955. .box.category .title:not([data-unread="0"])::after {
  956. position: absolute;
  957. top: 5px; right: 10px;
  958. border: 0;
  959. background: none;
  960. font-weight: bold;
  961. }
  962. .box.category .item.feed {
  963. padding: 2px 10px;
  964. font-size: 0.8rem;
  965. }
  966. .box.category .item.feed:not(.empty):not(.error) .item-title {
  967. color: #222;
  968. }
  969. /*=== PANEL */
  970. /*===========*/
  971. #panel {
  972. box-shadow: 0px 0px 4px #000;
  973. border-radius: 8px;
  974. background:#F9F7F4;
  975. }
  976. /*=== DIVERS */
  977. /*===========*/
  978. .aside.aside_feed .nav-form input,.aside.aside_feed .nav-form select {
  979. width: 130px;
  980. }
  981. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  982. right: -20px;
  983. }
  984. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  985. right: 33px;
  986. }
  987. /*=== STATISTICS */
  988. /*===============*/
  989. .stat {
  990. margin: 10px 0 20px;
  991. }
  992. .stat th,
  993. .stat td,
  994. .stat tr {
  995. border: none;
  996. }
  997. .stat > table td,
  998. .stat > table th {
  999. border-bottom: 1px solid #ccc;
  1000. background: rgba(255,255,255,0.38);
  1001. box-shadow: 0 1px #fff;
  1002. }
  1003. .stat > .horizontal-list {
  1004. margin: 0 0 5px;
  1005. }
  1006. .stat > .horizontal-list .item {
  1007. overflow: hidden;
  1008. white-space: nowrap;
  1009. text-overflow: ellipsis;
  1010. }
  1011. .stat > .horizontal-list .item:first-child {
  1012. width: 250px;
  1013. }
  1014. /*=== LOGS */
  1015. /*=========*/
  1016. .loglist {
  1017. border: 1px solid #aaa;
  1018. border-radius: 5px;
  1019. overflow: hidden;
  1020. }
  1021. .log {
  1022. padding: 5px 10px;
  1023. background: #fafafa;
  1024. color: #333;
  1025. font-size: 0.8rem;
  1026. }
  1027. .log+.log {
  1028. border-top: 1px solid #aaa;
  1029. }
  1030. .log .date {
  1031. display: block;
  1032. font-weight: bold;
  1033. }
  1034. .log.error {
  1035. background: #fdd;
  1036. color: #844;
  1037. }
  1038. .log.warning {
  1039. background: #ffe;
  1040. color: #c95;
  1041. }
  1042. .log.notice {
  1043. background: #f4f4f4;
  1044. color: #aaa;
  1045. }
  1046. .log.debug {
  1047. background: #333;
  1048. color: #eee;
  1049. }
  1050. #slider.active {
  1051. box-shadow: -4px 0 4px rgba(15, 15, 15, 0.55);
  1052. background: #F8F8F8;
  1053. }
  1054. #close-slider.active {
  1055. background: rgba(15, 15, 15, 0.35);
  1056. }
  1057. /*=== MOBILE */
  1058. /*===========*/
  1059. @media screen and (max-width: 840px) {
  1060. .header {
  1061. display: table;
  1062. }
  1063. .nav-login {
  1064. display: none;
  1065. }
  1066. .aside {
  1067. width: 0;
  1068. border-top: none;
  1069. box-shadow: 3px 0 3px #000;
  1070. transition: width 200ms linear;
  1071. -moz-transition: width 200ms linear;
  1072. -webkit-transition: width 200ms linear;
  1073. -o-transition: width 200ms linear;
  1074. -ms-transition: width 200ms linear;
  1075. }
  1076. .aside:target {
  1077. width: 235px;
  1078. }
  1079. .aside .toggle_aside,
  1080. #panel .close {
  1081. display: block;
  1082. width: 100%;
  1083. height: 40px;
  1084. line-height: 40px;
  1085. text-align: center;
  1086. background: #171717;
  1087. box-shadow: 0 1px rgba(255,255,255,0.08);
  1088. }
  1089. .aside .btn-important {
  1090. display: inline-block;
  1091. margin: 20px 0 0;
  1092. }
  1093. .aside.aside_feed {
  1094. padding: 0;
  1095. }
  1096. .nav_menu .btn {
  1097. margin: 5px 10px;
  1098. }
  1099. .nav_menu .stick {
  1100. margin: 0 10px;
  1101. }
  1102. .nav_menu .stick .btn {
  1103. margin: 5px 0;
  1104. }
  1105. .nav_menu .search {
  1106. display: inline-block;
  1107. max-width: 97%;
  1108. }
  1109. .nav_menu .search input {
  1110. max-width: 97%;
  1111. width: 90px;
  1112. }
  1113. .nav_menu .search input:focus {
  1114. width: 400px;
  1115. }
  1116. .day .name {
  1117. display: none;
  1118. }
  1119. .pagination {
  1120. margin: 0 0 3.5em;
  1121. }
  1122. .notification a.close {
  1123. display: block;
  1124. left: 0;
  1125. background: transparent;
  1126. }
  1127. .notification a.close:hover {
  1128. opacity: 0.5;
  1129. }
  1130. .notification a.close .icon {
  1131. display: none;
  1132. }
  1133. .nav_menu .search {
  1134. display: none;
  1135. }
  1136. #nav_entries {
  1137. width: 100%;
  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. .aside .btn-important {
  1152. display: none;
  1153. }
  1154. }