BlueLagoon.css 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325
  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 .form-group {
  611. margin-bottom: 1rem;
  612. }
  613. .prompt .form-group::after {
  614. display: none;
  615. }
  616. .prompt .form-group.form-group-actions {
  617. display: flex;
  618. margin-top: 2rem;
  619. align-items: center;
  620. justify-content: space-between;
  621. }
  622. .prompt input#username,.prompt input#passwordPlain {
  623. background: #fff;
  624. border: solid 1px #ccc;
  625. box-shadow: 0 4px -4px #ccc inset,0px 1px rgba(255, 255, 255, 0.08);
  626. }
  627. .prompt input#username:focus,.prompt input#passwordPlain:focus {
  628. border: solid 1px #0062be;
  629. box-shadow: 0 0 3px #0062be;
  630. }
  631. .prompt .btn.btn-important {
  632. padding-left: 1.5rem;
  633. padding-right: 1.5rem;
  634. font-size: 1.1rem;
  635. }
  636. /*=== New article notification */
  637. #new-article {
  638. background: #0084cc;
  639. text-align: center;
  640. font-size: 0.9em;
  641. }
  642. #new-article > a {
  643. line-height: 3em;
  644. color: #fff;
  645. font-weight: bold;
  646. }
  647. #new-article > a:hover {
  648. text-decoration: none;
  649. background: #06c;
  650. }
  651. /*=== Day indication */
  652. .day {
  653. padding: 0 10px;
  654. background: #f9f7f4;
  655. color: #666;
  656. box-shadow: 0 -1px #ccc, 0 -1px rgba(255,255,255,0.28) inset;
  657. font-style: italic;
  658. line-height: 3em;
  659. text-shadow: 0 1px rgba(255,255,255,0.28);
  660. text-align: center;
  661. }
  662. #new-article + .day {
  663. border-top: none;
  664. }
  665. .day .name {
  666. display: none;
  667. }
  668. /*=== Index menu */
  669. .nav_menu {
  670. padding: 5px 0;
  671. background: linear-gradient(0deg, #ede7de 0%, #c2bcb3 100%) #ede7de;
  672. background: -webkit-linear-gradient(bottom, #ede7de 0%, #c2bcb3 100%);
  673. border-bottom: 1px solid #ccc;
  674. box-shadow: 0 -1px rgba(255, 255, 255, 0.28) inset;
  675. text-align: center;
  676. }
  677. #panel >.nav_menu {
  678. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  679. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  680. }
  681. #panel > .nav_menu > #nav_menu_read_all {
  682. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  683. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  684. border: 1px solid #ccc;
  685. border-radius: 4px;
  686. box-shadow: 0px 1px #fff;
  687. }
  688. #panel > .nav_menu > #nav_menu_read_all .dropdown > .btn.dropdown-toggle {
  689. border: none;
  690. border-left: solid 1px #ccc;
  691. border-radius: 0 4px 4px 0;
  692. }
  693. /*=== Feed articles */
  694. .flux_content {
  695. background: #fff;
  696. }
  697. .flux {
  698. background: #f9f7f4;
  699. }
  700. .flux:hover {
  701. background: #f9f7f4;
  702. }
  703. .flux:not(.current):hover .item.title {
  704. background: #f9f7f4;
  705. }
  706. .flux.current .flux .item.title a {
  707. text-shadow: 0 0 2px #ccc;
  708. }
  709. .flux.favorite {
  710. background: #fff6da;
  711. }
  712. .flux.favorite:not(.current):hover {
  713. background: #f9f7f4;
  714. }
  715. .flux.favorite:not(.current):hover .item.title {
  716. background: #f9f7f4;
  717. }
  718. .flux.current {
  719. background: linear-gradient(0deg, #dad4cb 0%, #fff 100%) #dad4cb;
  720. background: -webkit-linear-gradient(bottom, #dad4cb 0%, #fff 100%);
  721. border-left: solid 4px #0062bf;
  722. box-shadow: 0 -1px #fff inset, 0 2px #ccc;
  723. }
  724. .flux .item.title a {
  725. color: #b4b3b1;
  726. }
  727. .flux.not_read .item.title a,
  728. .flux.favorite .item.title a {
  729. color: #333;
  730. }
  731. .flux.not_read:not(.current):hover .item.title a {
  732. color: #50504f;
  733. }
  734. .flux.current .item.title a {
  735. color: #0f0f0f;
  736. }
  737. .flux_header {
  738. font-size: 0.8rem;
  739. border-top: 1px solid #ddd;
  740. box-shadow: 0 -1px rgba(255,255,255,0.28) inset;
  741. cursor: pointer;
  742. }
  743. .flux_header .title {
  744. font-size: 0.9rem;
  745. }
  746. .flux .website .favicon {
  747. padding: 5px;
  748. }
  749. .flux .item.date {
  750. color: #666;
  751. font-size: 0.7rem;
  752. }
  753. .flux .bottom {
  754. font-size: 0.8rem;
  755. text-align: center;
  756. }
  757. /*=== Content of feed articles */
  758. .content {
  759. padding: 20px 10px;
  760. }
  761. .content > h1.title > a {
  762. color: #000;
  763. }
  764. .content hr {
  765. margin: 30px 10px;
  766. background: #ddd;
  767. height: 1px;
  768. border: 0;
  769. box-shadow: 0 2px 5px #ccc;
  770. }
  771. .content pre {
  772. margin: 10px auto;
  773. padding: 10px 20px;
  774. overflow: auto;
  775. background: #222;
  776. color: #fff;
  777. font-size: 0.9rem;
  778. border-radius: 3px;
  779. }
  780. .content code {
  781. padding: 2px 5px;
  782. background: #fafafa;
  783. color: #d14;
  784. border: 1px solid #eee;
  785. border-radius: 3px;
  786. }
  787. .content pre code {
  788. background: transparent;
  789. color: #fff;
  790. border: none;
  791. }
  792. .content blockquote {
  793. margin: 0;
  794. padding: 5px 20px;
  795. background: #fafafa;
  796. display: block;
  797. color: #333;
  798. border-top: 1px solid #ddd;
  799. border-bottom: 1px solid #ddd;
  800. }
  801. .content blockquote p {
  802. margin: 0;
  803. }
  804. /*=== Notification and actualize notification */
  805. .notification {
  806. background: #222;
  807. color: #fff;
  808. font-size: 0.9em;
  809. border: none;
  810. border-radius: 0 0 6px 6px;
  811. 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;
  812. text-align: center;
  813. font-weight: bold;
  814. position: absolute;
  815. top: 0;
  816. vertical-align: middle;
  817. }
  818. .notification.good {
  819. color: #fff;
  820. }
  821. .notification.bad {
  822. background: #222;
  823. color: #eb2901;
  824. }
  825. .notification a.close {
  826. padding: 0 15px;
  827. line-height: 3em;
  828. }
  829. .notification a.close:hover {
  830. background: rgba(255,255,255,0.2);
  831. }
  832. .notification a.close:hover .icon {
  833. filter: brightness(2);
  834. }
  835. .notification#actualizeProgress {
  836. line-height: 2em;
  837. }
  838. /*=== "Load more" part */
  839. #bigMarkAsRead {
  840. background: #f9f7f4;
  841. color: #666;
  842. box-shadow: 0 1px rgba(255,255,255,0.28)inset;
  843. text-align: center;
  844. text-decoration: none;
  845. text-shadow: 0 -1px 0 #aaa;
  846. }
  847. #bigMarkAsRead:hover {
  848. background: #f9f7f4;
  849. background: radial-gradient(circle at 50% -25% , #ccc 0%, #f9f7f4 50%);
  850. color: #000;
  851. }
  852. #bigMarkAsRead:hover .bigTick {
  853. text-shadow: 0 0 10px #666;
  854. }
  855. /*=== Navigation menu (for articles) */
  856. #nav_entries {
  857. background: linear-gradient(180deg, #222 0%, #171717 100%) #222;
  858. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  859. width: 235px;
  860. border-top: 1px solid #171717;
  861. box-shadow: 0 1px rgba(255,255,255,0.08) inset, 0 -2px 2px #171717;
  862. text-align: center;
  863. line-height: 3em;
  864. table-layout: fixed;
  865. }
  866. /*=== READER VIEW */
  867. /*================*/
  868. #stream.reader .flux {
  869. padding: 0 0 50px;
  870. background: #f0f0f0;
  871. color: #333;
  872. border: none;
  873. }
  874. #stream.reader .flux .author {
  875. margin: 0 0 10px;
  876. color: #666;
  877. font-size: 90%;
  878. }
  879. /*=== GLOBAL VIEW */
  880. /*================*/
  881. #stream.global {
  882. padding: 24px 0;
  883. }
  884. .box.category .box-title {
  885. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #171717;
  886. font-size: 1.2rem;
  887. border-radius: none;
  888. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  889. line-height: 2em;
  890. text-shadow: 0 1px #ccc;
  891. }
  892. .box.category .box-title .title {
  893. font-weight: normal;
  894. text-decoration: none;
  895. text-align: left;
  896. color: #888;
  897. }
  898. .box.category:not([data-unread="0"]) .box-title .title {
  899. color: #222;
  900. font-weight: bold;
  901. }
  902. .box.category .title:not([data-unread="0"])::after {
  903. background: none;
  904. border: 0;
  905. position: absolute;
  906. top: 5px; right: 10px;
  907. font-weight: bold;
  908. }
  909. .box.category .item.feed {
  910. padding: 2px 10px;
  911. font-size: 0.8rem;
  912. }
  913. .box.category .item.feed:not(.empty):not(.error) .item-title {
  914. color: #222;
  915. }
  916. /*=== PANEL */
  917. /*===========*/
  918. #panel {
  919. background: #f9f7f4;
  920. border-radius: 8px;
  921. box-shadow: 0px 0px 4px #000;
  922. }
  923. /*=== DIVERS */
  924. /*===========*/
  925. .aside.aside_feed .nav-form input,.aside.aside_feed .nav-form select {
  926. width: 130px;
  927. }
  928. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  929. right: -20px;
  930. }
  931. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  932. right: 33px;
  933. }
  934. /*=== STATISTICS */
  935. /*===============*/
  936. .stat {
  937. margin: 10px 0 20px;
  938. }
  939. .stat th,
  940. .stat td,
  941. .stat tr {
  942. border: none;
  943. }
  944. .stat > table td,
  945. .stat > table th {
  946. background: rgba(255,255,255,0.38);
  947. border-bottom: 1px solid #ccc;
  948. box-shadow: 0 1px #fff;
  949. }
  950. .stat > .horizontal-list {
  951. margin: 0 0 5px;
  952. }
  953. .stat > .horizontal-list .item {
  954. overflow: hidden;
  955. white-space: nowrap;
  956. text-overflow: ellipsis;
  957. }
  958. .stat > .horizontal-list .item:first-child {
  959. width: 250px;
  960. }
  961. /*=== LOGS */
  962. /*=========*/
  963. .loglist {
  964. border: 1px solid #aaa;
  965. border-radius: 5px;
  966. overflow: hidden;
  967. }
  968. .log {
  969. padding: 5px 10px;
  970. background: #fafafa;
  971. color: #333;
  972. font-size: 0.8rem;
  973. }
  974. .log+.log {
  975. border-top: 1px solid #aaa;
  976. }
  977. .log .date {
  978. display: block;
  979. font-weight: bold;
  980. }
  981. .log.error {
  982. background: #fdd;
  983. color: #844;
  984. }
  985. .log.warning {
  986. background: #ffe;
  987. color: #c95;
  988. }
  989. .log.notice {
  990. background: #f4f4f4;
  991. color: #aaa;
  992. }
  993. .log.debug {
  994. background: #333;
  995. color: #eee;
  996. }
  997. #slider.active {
  998. background: #f8f8f8;
  999. box-shadow: -4px 0 4px rgba(15, 15, 15, 0.55);
  1000. }
  1001. #close-slider.active {
  1002. background: rgba(15, 15, 15, 0.35);
  1003. }
  1004. /*=== MOBILE */
  1005. /*===========*/
  1006. @media screen and (max-width: 840px) {
  1007. .form-group .group-name {
  1008. padding-bottom: 0;
  1009. text-align: left;
  1010. }
  1011. .header {
  1012. display: table;
  1013. }
  1014. .header > .item.title .logo {
  1015. height: 24px;
  1016. }
  1017. .nav-login {
  1018. display: none;
  1019. }
  1020. .aside {
  1021. width: 0;
  1022. border-top: none;
  1023. box-shadow: 3px 0 3px #000;
  1024. transition: width 200ms linear;
  1025. }
  1026. .aside:target {
  1027. width: 235px;
  1028. }
  1029. .aside .toggle_aside,
  1030. #panel .close,
  1031. .dropdown-menu .toggle_aside {
  1032. background: #171717;
  1033. display: block;
  1034. width: 100%;
  1035. height: 40px;
  1036. line-height: 40px;
  1037. text-align: center;
  1038. box-shadow: 0 1px rgba(255,255,255,0.08);
  1039. }
  1040. .aside.aside_feed {
  1041. padding: 0;
  1042. }
  1043. .nav_menu .btn {
  1044. margin: 5px 10px;
  1045. }
  1046. .nav_menu .stick {
  1047. margin: 0 10px;
  1048. }
  1049. .nav_menu .stick .btn {
  1050. margin: 5px 0;
  1051. }
  1052. .nav_menu .search {
  1053. display: none;
  1054. }
  1055. .nav_menu .search input {
  1056. max-width: 97%;
  1057. width: 90px;
  1058. }
  1059. .nav_menu .search input:focus {
  1060. width: 400px;
  1061. }
  1062. .dropdown-target:target ~ .dropdown-toggle::after {
  1063. background-color: #222;
  1064. border-top: 1px solid #171717;
  1065. border-left: 1px solid #171717;
  1066. right: 13px;
  1067. }
  1068. .day .name {
  1069. display: none;
  1070. }
  1071. .notification a.close {
  1072. background: transparent;
  1073. display: block;
  1074. left: 0;
  1075. }
  1076. .notification a.close:hover {
  1077. opacity: 0.5;
  1078. }
  1079. .notification a.close .icon {
  1080. display: none;
  1081. }
  1082. #nav_entries {
  1083. width: 100%;
  1084. }
  1085. .post {
  1086. padding-left: 15px;
  1087. padding-right: 15px;
  1088. }
  1089. #close-slider.active {
  1090. background: #171717;
  1091. box-shadow: 0 1px rgba(255,255,255,0.08)
  1092. }
  1093. }
  1094. @media (max-width: 700px) {
  1095. .nav_menu .search {
  1096. display: inline-block;
  1097. }
  1098. }