BlueLagoon.rtl.css 22 KB

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