BlueLagoon.css 24 KB

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