screwdriver.rtl.css 21 KB

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