BlueLagoon.css 23 KB

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