BlueLagoon.css 22 KB

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