BlueLagoon.rtl.css 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389
  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: right;
  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: left;
  98. }
  99. .form-group .group-controls {
  100. min-height: 25px;
  101. padding: 5px 0;
  102. }
  103. .form-group table {
  104. margin: 10px 220px 0 0;
  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: 0 6px 6px 0;
  129. }
  130. .stick .btn:last-child, .stick input:last-child {
  131. border-radius: 6px 0 0 6px;
  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-right: none;
  143. }
  144. .stick .btn + .dropdown > .btn {
  145. border-right: none;
  146. border-radius: 3px 0 0 3px;
  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: left;
  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: right;
  324. }
  325. .dropdown-menu::after {
  326. background: #222;
  327. width: 10px;
  328. height: 10px;
  329. border-top: 1px solid #171717;
  330. border-right: 1px solid #171717;
  331. content: "";
  332. position: absolute;
  333. top: -6px;
  334. left: 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 -14px 0 0;
  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-left: 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. left: 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. right: 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. max-width: 20rem;
  642. margin-right: auto;
  643. margin-left: auto;
  644. padding-right: .5rem;
  645. padding-left: .5rem;
  646. text-align: center;
  647. text-shadow: 0 1px rgba(255,255,255,0.08);
  648. }
  649. .prompt form {
  650. margin-top: 2rem;
  651. margin-bottom: 3rem;
  652. text-align: right;
  653. }
  654. .prompt .form-group {
  655. margin-bottom: 1rem;
  656. }
  657. .prompt .form-group::after {
  658. display: none;
  659. }
  660. .prompt .form-group.form-group-actions {
  661. display: flex;
  662. margin-top: 2rem;
  663. align-items: center;
  664. justify-content: space-between;
  665. }
  666. .prompt .stick,
  667. .prompt input {
  668. width: 100%;
  669. box-sizing: border-box;
  670. }
  671. .prompt input#username,.prompt input#passwordPlain {
  672. background: #fff;
  673. border: solid 1px #ccc;
  674. box-shadow: 0 4px -4px #ccc inset,0px 1px rgba(255, 255, 255, 0.08);
  675. }
  676. .prompt input#username:focus,.prompt input#passwordPlain:focus {
  677. border: solid 1px #0062be;
  678. box-shadow: 0 0 3px #0062be;
  679. }
  680. .prompt .btn.btn-important {
  681. padding-right: 1.5rem;
  682. padding-left: 1.5rem;
  683. font-size: 1.1rem;
  684. }
  685. .prompt p {
  686. margin: 20px 0;
  687. }
  688. /*=== New article notification */
  689. #new-article {
  690. background: #0084cc;
  691. text-align: center;
  692. font-size: 0.9em;
  693. }
  694. #new-article:hover {
  695. background: #06c;
  696. }
  697. #new-article > a {
  698. line-height: 3em;
  699. color: #fff;
  700. font-weight: bold;
  701. }
  702. #new-article > a:hover {
  703. text-decoration: none;
  704. }
  705. /*=== Day indication */
  706. .day {
  707. padding: 0 10px;
  708. background: #f9f7f4;
  709. color: #666;
  710. box-shadow: 0 -1px #ccc, 0 -1px rgba(255,255,255,0.28) inset;
  711. font-style: italic;
  712. line-height: 3em;
  713. text-shadow: 0 1px rgba(255,255,255,0.28);
  714. text-align: center;
  715. }
  716. #new-article + .day {
  717. border-top: none;
  718. }
  719. .day .name {
  720. display: none;
  721. }
  722. /*=== Index menu */
  723. .nav_menu {
  724. padding: 5px 0;
  725. background: linear-gradient(0deg, #ede7de 0%, #c2bcb3 100%) #ede7de;
  726. background: -webkit-linear-gradient(bottom, #ede7de 0%, #c2bcb3 100%);
  727. border-bottom: 1px solid #ccc;
  728. box-shadow: 0 -1px rgba(255, 255, 255, 0.28) inset;
  729. text-align: center;
  730. }
  731. #panel >.nav_menu {
  732. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  733. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  734. }
  735. #panel > .nav_menu > #nav_menu_read_all {
  736. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  737. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  738. border: 1px solid #ccc;
  739. border-radius: 4px;
  740. box-shadow: 0px 1px #fff;
  741. }
  742. #panel > .nav_menu > #nav_menu_read_all .dropdown > .btn.dropdown-toggle {
  743. border: none;
  744. border-right: solid 1px #ccc;
  745. border-radius: 4px 0 0 4px;
  746. }
  747. /*=== Feed articles */
  748. .flux_content {
  749. background: #fff;
  750. }
  751. .flux {
  752. background: #f9f7f4;
  753. }
  754. .flux:hover {
  755. background: #f9f7f4;
  756. }
  757. .flux:not(.current):hover .item.title {
  758. background: #f9f7f4;
  759. }
  760. .flux.current .flux .item.title a {
  761. text-shadow: 0 0 2px #ccc;
  762. }
  763. .flux.favorite {
  764. background: #fff6da;
  765. }
  766. .flux.favorite:not(.current):hover {
  767. background: #f9f7f4;
  768. }
  769. .flux.favorite:not(.current):hover .item.title {
  770. background: #f9f7f4;
  771. }
  772. .flux.current {
  773. background: linear-gradient(0deg, #dad4cb 0%, #fff 100%) #dad4cb;
  774. background: -webkit-linear-gradient(bottom, #dad4cb 0%, #fff 100%);
  775. border-right: solid 4px #0062bf;
  776. box-shadow: 0 -1px #fff inset, 0 2px #ccc;
  777. }
  778. .flux .item.title a {
  779. color: #b4b3b1;
  780. }
  781. .flux.not_read .item.title a,
  782. .flux.favorite .item.title a {
  783. color: #333;
  784. }
  785. .flux.not_read:not(.current):hover .item.title a {
  786. color: #50504f;
  787. }
  788. .flux.current .item.title a {
  789. color: #0f0f0f;
  790. }
  791. .flux_header {
  792. font-size: 0.8rem;
  793. border-top: 1px solid #ddd;
  794. box-shadow: 0 -1px rgba(255,255,255,0.28) inset;
  795. cursor: pointer;
  796. }
  797. .flux_header .title {
  798. font-size: 0.9rem;
  799. }
  800. .flux .website .favicon {
  801. padding: 5px;
  802. }
  803. .flux .item.date {
  804. color: #666;
  805. font-size: 0.7rem;
  806. }
  807. .flux .bottom {
  808. font-size: 0.8rem;
  809. text-align: center;
  810. }
  811. /*=== Content of feed articles */
  812. .content {
  813. padding: 20px 10px;
  814. }
  815. .content > h1.title > a {
  816. color: #000;
  817. }
  818. .content hr {
  819. margin: 30px 10px;
  820. background: #ddd;
  821. height: 1px;
  822. border: 0;
  823. box-shadow: 0 2px 5px #ccc;
  824. }
  825. .content pre {
  826. margin: 10px auto;
  827. padding: 10px 20px;
  828. overflow: auto;
  829. background: #222;
  830. color: #fff;
  831. font-size: 0.9rem;
  832. border-radius: 3px;
  833. }
  834. .content code {
  835. padding: 2px 5px;
  836. background: #fafafa;
  837. color: #d14;
  838. border: 1px solid #eee;
  839. border-radius: 3px;
  840. }
  841. .content pre code {
  842. background: transparent;
  843. color: #fff;
  844. border: none;
  845. }
  846. .content blockquote {
  847. margin: 0;
  848. padding: 5px 20px;
  849. background: #fafafa;
  850. display: block;
  851. color: #333;
  852. border-top: 1px solid #ddd;
  853. border-bottom: 1px solid #ddd;
  854. }
  855. .content blockquote p {
  856. margin: 0;
  857. }
  858. /*=== Notification and actualize notification */
  859. .notification {
  860. padding: 0 5px 0 0;
  861. background: #222;
  862. color: #fff;
  863. font-size: 0.9em;
  864. border: none;
  865. border-radius: 0 0 6px 6px;
  866. 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;
  867. text-align: center;
  868. font-weight: bold;
  869. line-height: 3em;
  870. position: absolute;
  871. top: 0;
  872. z-index: 10;
  873. vertical-align: middle;
  874. }
  875. .notification.good {
  876. color: #fff;
  877. }
  878. .notification.bad {
  879. background: #222;
  880. color: #eb2901;
  881. }
  882. .notification a.close {
  883. padding: 0 15px;
  884. line-height: 3em;
  885. }
  886. .notification#actualizeProgress {
  887. line-height: 2em;
  888. }
  889. /*=== "Load more" part */
  890. #bigMarkAsRead {
  891. background: #f9f7f4;
  892. color: #666;
  893. box-shadow: 0 1px rgba(255,255,255,0.28)inset;
  894. text-align: center;
  895. text-decoration: none;
  896. text-shadow: 0 -1px 0 #aaa;
  897. }
  898. #bigMarkAsRead:hover {
  899. background: #f9f7f4;
  900. background: radial-gradient(circle at 50% -25% , #ccc 0%, #f9f7f4 50%);
  901. color: #000;
  902. }
  903. #bigMarkAsRead:hover .bigTick {
  904. text-shadow: 0 0 10px #666;
  905. }
  906. /*=== Navigation menu (for articles) */
  907. #nav_entries {
  908. background: linear-gradient(-180deg, #222 0%, #171717 100%) #222;
  909. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  910. width: 235px;
  911. border-top: 1px solid #171717;
  912. box-shadow: 0 1px rgba(255,255,255,0.08) inset, 0 -2px 2px #171717;
  913. text-align: center;
  914. line-height: 3em;
  915. table-layout: fixed;
  916. }
  917. /*=== READER VIEW */
  918. /*================*/
  919. #stream.reader .flux {
  920. padding: 0 0 50px;
  921. background: #f0f0f0;
  922. color: #333;
  923. border: none;
  924. }
  925. #stream.reader .flux .author {
  926. margin: 0 0 10px;
  927. color: #666;
  928. font-size: 90%;
  929. }
  930. /*=== GLOBAL VIEW */
  931. /*================*/
  932. #stream.global {
  933. padding: 24px 0;
  934. }
  935. .box.category .box-title {
  936. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #171717;
  937. font-size: 1.2rem;
  938. border-radius: none;
  939. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  940. line-height: 2em;
  941. text-shadow: 0 1px #ccc;
  942. }
  943. .box.category .box-title .title {
  944. font-weight: normal;
  945. text-decoration: none;
  946. text-align: right;
  947. color: #888;
  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. background: none;
  955. border: 0;
  956. position: absolute;
  957. top: 5px; left: 10px;
  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. background: #f9f7f4;
  971. border-radius: 8px;
  972. box-shadow: 0px 0px 4px #000;
  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. left: -20px;
  981. }
  982. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  983. left: 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. background: rgba(255,255,255,0.38);
  998. border-bottom: 1px solid #ccc;
  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. background: #f8f8f8;
  1050. box-shadow: 4px 0 4px rgba(15, 15, 15, 0.55);
  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. .form-group .group-name {
  1059. padding-bottom: 0;
  1060. text-align: right;
  1061. }
  1062. .box .box-title .configure,
  1063. .box .box-content .item .configure {
  1064. visibility: visible;
  1065. }
  1066. .header {
  1067. display: table;
  1068. }
  1069. .nav-login {
  1070. display: none;
  1071. }
  1072. .aside {
  1073. width: 0;
  1074. border-top: none;
  1075. box-shadow: -3px 0 3px #000;
  1076. transition: width 200ms linear;
  1077. }
  1078. .aside:target {
  1079. width: 235px;
  1080. }
  1081. .aside .toggle_aside,
  1082. #panel .close {
  1083. background: #171717;
  1084. display: block;
  1085. width: 100%;
  1086. height: 40px;
  1087. line-height: 40px;
  1088. text-align: center;
  1089. box-shadow: 0 1px rgba(255,255,255,0.08);
  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: none;
  1105. }
  1106. .nav_menu .search input {
  1107. max-width: 97%;
  1108. width: 90px;
  1109. }
  1110. .nav_menu .search input:focus {
  1111. width: 400px;
  1112. }
  1113. .day .name {
  1114. display: none;
  1115. }
  1116. .pagination {
  1117. margin: 0 0 3.5em;
  1118. }
  1119. .notification a.close {
  1120. background: transparent;
  1121. display: block;
  1122. right: 0;
  1123. }
  1124. .notification a.close:hover {
  1125. opacity: 0.5;
  1126. }
  1127. .notification a.close .icon {
  1128. display: none;
  1129. }
  1130. #nav_entries {
  1131. width: 100%;
  1132. }
  1133. .post {
  1134. padding-right: 15px;
  1135. padding-left: 15px;
  1136. }
  1137. #close-slider.active {
  1138. background: #171717;
  1139. box-shadow: 0 1px rgba(255,255,255,0.08)
  1140. }
  1141. }
  1142. @media (max-width: 700px) {
  1143. .header {
  1144. display: none;
  1145. }
  1146. .nav-login {
  1147. display: inline-block;
  1148. width: 100%;
  1149. }
  1150. .nav_menu .search {
  1151. display: inline-block;
  1152. }
  1153. }