BlueLagoon.rtl.css 22 KB

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