BlueLagoon.rtl.css 23 KB

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