BlueLagoon.css 21 KB

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