BlueLagoon.rtl.css 22 KB

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