screwdriver.rtl.css 23 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330
  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: #d18114;
  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 #e7ab34;
  46. box-shadow: 0 0 3px #e7ab34;
  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: left;
  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: 0 6px 6px 0;
  118. }
  119. .stick .btn:last-child, .stick input:last-child {
  120. border-radius: 6px 0 0 6px;
  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-right: none;
  132. }
  133. .stick .btn + .dropdown > .btn {
  134. border-right: none;
  135. border-radius: 3px 0 0 3px;
  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, #e4992c 0%, #d18114 100%) #e4992c;
  192. background: -webkit-linear-gradient(top, #e4992c 0%, #d18114 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:active {
  200. background: linear-gradient(0deg, #e4992c 0%, #d18114 100%) #e4992c;
  201. background: -webkit-linear-gradient(bottom, #e4992c 0%, #d18114 100%);
  202. }
  203. .btn-important .icon {
  204. filter: brightness(3);
  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 {
  240. margin: 0;
  241. background: linear-gradient(-180deg, #222 0%, #171717 100%) repeat scroll 100% 0% #171717;
  242. background: -webkit-linear-gradient(-180deg, #222 0%, #171717 100%);
  243. box-shadow: 1px 2px 2px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset;
  244. border-width: medium medium 1px;
  245. border-style: none none solid;
  246. border-color: -moz-use-text-color -moz-use-text-color #171717;
  247. }
  248. .nav-list .item.active a {
  249. color: #d18114;
  250. }
  251. .nav-list .disable {
  252. background: #fafafa;
  253. color: #aaa;
  254. text-align: center;
  255. }
  256. .nav-list .item > a {
  257. padding: 0 10px;
  258. color: #ccc;
  259. }
  260. .nav-list a:hover {
  261. text-decoration: none;
  262. }
  263. .nav-list .item.empty a {
  264. color: #f39c12;
  265. }
  266. .nav-list .item.active.empty a {
  267. background: linear-gradient(-180deg, #e4992c 0%, #d18114 100%) #e4992c;
  268. background: -webkit-linear-gradient(-180deg, #e4992c 0%, #d18114 100%);
  269. color: #fff;
  270. }
  271. .nav-list .item.error a {
  272. color: #bd362f;
  273. }
  274. .nav-list .item.active.error a {
  275. background: #bd362f;
  276. color: #fff;
  277. }
  278. .nav-list .nav-header {
  279. padding: 0 10px;
  280. background: transparent;
  281. color: #222;
  282. }
  283. .nav-list .nav-form {
  284. padding: 3px;
  285. text-align: center;
  286. }
  287. .nav-head {
  288. margin: 0;
  289. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  290. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  291. text-align: left;
  292. }
  293. .nav-head .item {
  294. padding: 5px 10px;
  295. font-size: 0.9rem;
  296. line-height: 1.5rem;
  297. }
  298. /*=== Horizontal-list */
  299. .horizontal-list {
  300. margin: 0;
  301. padding: 0;
  302. }
  303. .horizontal-list .item {
  304. vertical-align: middle;
  305. }
  306. /*=== Dropdown */
  307. .dropdown-menu {
  308. margin: 5px 0 0;
  309. padding: 5px 0;
  310. background: #222;
  311. font-size: 0.8rem;
  312. border: 1px solid #171717;
  313. border-radius: 4px;
  314. box-shadow: 0 0 3px #000;
  315. text-align: right;
  316. }
  317. .dropdown-menu::after {
  318. border-color: #171717;
  319. }
  320. .configure .dropdown-header {
  321. display: none;
  322. }
  323. .dropdown-header {
  324. padding: 0 5px 5px;
  325. color: #ccc;
  326. font-weight: bold;
  327. }
  328. .dropdown-menu > .item > a,
  329. .dropdown-menu > .item > span,
  330. .dropdown-menu > .item > .as-link {
  331. padding: 0 22px;
  332. line-height: 2.5em;
  333. color: #ccc;
  334. font-size: 0.8rem;
  335. }
  336. .dropdown-menu > .item > label {
  337. color: #ccc;
  338. }
  339. .dropdown-menu > .item:hover {
  340. background: #171717;
  341. color: #fff;
  342. }
  343. .dropdown-menu > .item[aria-checked="true"] > a::before {
  344. font-weight: bold;
  345. margin: 0 -14px 0 0;
  346. }
  347. .dropdown-menu > .item:hover > a {
  348. color: #fff;
  349. text-decoration: none;
  350. }
  351. .separator {
  352. margin: 5px 0;
  353. border-bottom: 1px solid #171717;
  354. box-shadow: 0 1px rgba(255,255,255,0.08);
  355. }
  356. /*=== Alerts */
  357. .alert {
  358. margin: 15px auto;
  359. padding: 10px 15px;
  360. background: #f4f4f4;
  361. color: #aaa;
  362. font-size: 0.9em;
  363. border: 1px solid #ccc;
  364. border-left: 1px solid #aaa;
  365. border-bottom: 1px solid #aaa;
  366. border-radius: 5px;
  367. text-shadow: 0 0 1px #eee;
  368. }
  369. .alert-head {
  370. font-size: 1.15em;
  371. }
  372. .alert > a {
  373. color: inherit;
  374. text-decoration: underline;
  375. }
  376. .alert-warn {
  377. background: #ffe;
  378. color: #c95;
  379. border: 1px solid #eeb;
  380. }
  381. .alert-success {
  382. background: #dfd;
  383. color: #484;
  384. border: 1px solid #cec;
  385. }
  386. .alert-error {
  387. background: #fdd;
  388. color: #844;
  389. border: 1px solid #ecc;
  390. }
  391. /*=== Pagination */
  392. .pagination {
  393. background: #fafafa;
  394. color: #333;
  395. }
  396. .pagination .item a {
  397. color: #333;
  398. }
  399. .pagination .item a:hover {
  400. background: #ddd;
  401. color: inherit
  402. }
  403. .pagination:first-child .item {
  404. border-bottom: 1px solid #aaa;
  405. }
  406. .pagination:last-child .item {
  407. border-top: 1px solid #ddd;
  408. }
  409. /*=== Boxes */
  410. .box {
  411. background: #ede7de;
  412. border-radius: 4px;
  413. box-shadow: 0 1px #fff;
  414. }
  415. .box .box-title {
  416. margin: 0;
  417. padding: 5px 10px;
  418. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #171717;
  419. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  420. color: #888;
  421. font-size: 1.1rem;
  422. border-radius: 4px 4px 0 0;
  423. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  424. text-shadow: 0 1px #ccc;
  425. font-weight: normal;
  426. }
  427. .box .box-title .configure {
  428. margin-left: 4px;
  429. }
  430. .box .box-content {
  431. padding-right: 30px;
  432. max-height: 260px;
  433. }
  434. .box .box-content .item {
  435. font-size: 0.9rem;
  436. line-height: 2.5em;
  437. }
  438. /*=== Tree */
  439. .tree {
  440. margin: 10px 0;
  441. }
  442. .tree-folder-title {
  443. position: relative;
  444. padding: 0 10px;
  445. line-height: 2.5rem;
  446. font-size: 0.9rem;
  447. }
  448. .tree-folder-title .title {
  449. background: inherit;
  450. color: #fff;
  451. }
  452. .tree-folder-title .title:hover {
  453. text-decoration: none;
  454. }
  455. .tree-folder.active .tree-folder-title {
  456. background: linear-gradient(-180deg, #222 0%, #171717 100%) #171717;
  457. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  458. color: #fff;
  459. box-shadow: 0px 1px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset;
  460. text-shadow: 0 0 2px rgba(255,255,255,0.28);
  461. }
  462. .tree-folder-items {
  463. padding: 8px 0;
  464. background: #171717;
  465. box-shadow: 0 4px 4px #171717 inset, 0 1px rgba(255,255,255,0.08),0 -1px rgba(255,255,255,0.08);
  466. }
  467. .tree-folder-items > .item {
  468. padding: 0 10px;
  469. line-height: 2.5rem;
  470. font-size: 0.8rem;
  471. }
  472. .tree-folder-items > .item.active {
  473. margin: 0px 8px;
  474. background: linear-gradient(-180deg, #222 0%, #171717 100%) #171717;
  475. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  476. border-radius: 4px;
  477. box-shadow: 0px 1px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset, 0 2px 2px #111;
  478. }
  479. .tree-folder-items > .item > a {
  480. text-decoration: none;
  481. color: #fff;
  482. font-size: 0.92em;
  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. height: 55px;
  508. }
  509. .header > .item {
  510. padding: 0;
  511. vertical-align: middle;
  512. text-align: center;
  513. }
  514. .header > .item.title .logo {
  515. margin: 0.5em 0;
  516. height: 35px;
  517. filter: invert(80%);
  518. }
  519. .header > .item.title {
  520. width: 250px;
  521. }
  522. .header > .item.search input {
  523. width: 230px;
  524. }
  525. .header .item.search input:focus {
  526. width: 350px;
  527. }
  528. /*=== Body */
  529. #global {
  530. background: #ede7de;
  531. height: calc(100% - 55px);
  532. }
  533. .aside {
  534. background: #222;
  535. width: 235px;
  536. border-top: 1px solid #ccc;
  537. border-radius: 12px 0px 0px 0px;
  538. box-shadow: 0px -1px #fff, 0 2px 2px #171717 inset;
  539. }
  540. .aside.aside_feed {
  541. padding: 10px 0;
  542. text-align: center;
  543. }
  544. .aside.aside_feed .tree {
  545. margin: 10px 0 50px;
  546. }
  547. /*=== Aside main page (categories) */
  548. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  549. background-color: #d18114;
  550. }
  551. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  552. background-color: #222;
  553. color: #ccc;
  554. border: 1px solid #333;
  555. }
  556. .aside_feed .btn-important {
  557. border: none;
  558. }
  559. /*=== Aside main page (feeds) */
  560. .feed.item.empty,
  561. .feed.item.empty > a {
  562. color: #e67e22;
  563. }
  564. .feed.item.error,
  565. .feed.item.error > a {
  566. color: #bd362f;
  567. }
  568. .aside_feed .tree-folder-items .dropdown-menu::after {
  569. right: 2px;
  570. }
  571. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  572. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  573. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  574. border-radius: 3px;
  575. }
  576. /*=== Configuration pages */
  577. .post {
  578. padding: 10px 50px;
  579. font-size: 0.9em;
  580. }
  581. .post form {
  582. margin: 10px 0;
  583. }
  584. .post.content {
  585. max-width: 550px;
  586. }
  587. /*=== Prompt (centered) */
  588. .prompt {
  589. max-width: 20rem;
  590. margin-right: auto;
  591. margin-left: auto;
  592. padding-right: .5rem;
  593. padding-left: .5rem;
  594. text-align: center;
  595. text-shadow: 0 1px rgba(255,255,255,0.08);
  596. }
  597. .prompt form {
  598. margin-top: 2rem;
  599. margin-bottom: 3rem;
  600. text-align: right;
  601. }
  602. .prompt .form-group {
  603. margin-bottom: 1rem;
  604. }
  605. .prompt .form-group::after {
  606. display: none;
  607. }
  608. .prompt .form-group.form-group-actions {
  609. display: flex;
  610. margin-top: 2rem;
  611. align-items: center;
  612. justify-content: space-between;
  613. }
  614. .prompt .stick,
  615. .prompt input {
  616. width: 100%;
  617. box-sizing: border-box;
  618. }
  619. .prompt input#username,.prompt input#passwordPlain {
  620. background: #fff;
  621. border: solid 1px #ccc;
  622. box-shadow: 0 4px -4px #ccc inset,0px 1px rgba(255, 255, 255, 0.08);
  623. }
  624. .prompt input#username:focus,.prompt input#passwordPlain:focus {
  625. border: solid 1px #e7ab34;
  626. box-shadow: 0 0 3px #e7ab34;
  627. }
  628. .prompt .btn.btn-important {
  629. padding-right: 1.5rem;
  630. padding-left: 1.5rem;
  631. font-size: 1.1rem;
  632. }
  633. .prompt p {
  634. margin: 20px 0;
  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: linear-gradient(0deg, #ede7de 0%, #c2bcb3 100%) #ede7de;
  655. background: -webkit-linear-gradient(bottom, #c2bcb3 0%, #fff 100%);
  656. color: #666;
  657. box-shadow: 0 1px #bdb7ae inset, 0 -1px rgba(255,255,255,0.28) inset;
  658. font-style: italic;
  659. line-height: 3em;
  660. text-shadow: 0 1px rgba(255,255,255,0.28);
  661. text-align: center;
  662. }
  663. #new-article + .day {
  664. border-top: none;
  665. }
  666. .day .name {
  667. display: none;
  668. }
  669. /*=== Index menu */
  670. .nav_menu {
  671. padding: 5px 0;
  672. background: #ede7de;
  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-right: solid 1px #ccc;
  691. border-radius: 4px 0 0 4px;
  692. }
  693. /*=== Feed articles */
  694. .flux_content {
  695. background: #fff;
  696. border-radius: 10px;
  697. }
  698. .flux {
  699. background: #ede7de;
  700. }
  701. .flux:hover {
  702. background: #f9f7f4;
  703. }
  704. .flux:not(.current):hover .item.title {
  705. background: #f9f7f4;
  706. }
  707. .flux.current .flux .item.title a {
  708. text-shadow: 0 0 2px #ccc;
  709. }
  710. .flux.favorite {
  711. background: #fff6da;
  712. }
  713. .flux.favorite:not(.current):hover {
  714. background: #f9f7f4;
  715. }
  716. .flux.favorite:not(.current):hover .item.title {
  717. background: #f9f7f4;
  718. }
  719. .flux.current {
  720. margin: 3px 6px;
  721. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  722. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  723. border-radius: 10px;
  724. box-shadow: 0 -1px #fff inset, 0 2px #ccc;
  725. }
  726. .flux .item.title a {
  727. color: #aca8a3;
  728. }
  729. .flux.not_read .item.title a,
  730. .flux.favorite .item.title a {
  731. color: #333;
  732. }
  733. .flux.not_read:not(.current):hover .item.title a {
  734. color: #50504f;
  735. }
  736. .flux.current .item.title a {
  737. color: #0f0f0f;
  738. }
  739. .flux_header {
  740. font-size: 0.8rem;
  741. border-top: 1px solid #ddd;
  742. box-shadow: 0 -1px rgba(255,255,255,0.28) inset;
  743. cursor: pointer;
  744. }
  745. .flux_header .title {
  746. font-size: 0.9rem;
  747. }
  748. .flux .website .favicon {
  749. padding: 5px;
  750. }
  751. .flux .item.date {
  752. color: #666;
  753. font-size: 0.7rem;
  754. }
  755. .flux .bottom {
  756. font-size: 0.8rem;
  757. text-align: center;
  758. }
  759. /*=== Content of feed articles */
  760. .content {
  761. padding: 20px 10px;
  762. }
  763. .content > h1.title > a {
  764. color: #000;
  765. }
  766. .content hr {
  767. margin: 30px 10px;
  768. background: #ddd;
  769. height: 1px;
  770. border: 0;
  771. box-shadow: 0 2px 5px #ccc;
  772. }
  773. .content pre {
  774. margin: 10px auto;
  775. padding: 10px 20px;
  776. overflow: auto;
  777. background: #222;
  778. color: #fff;
  779. font-size: 0.9rem;
  780. border-radius: 3px;
  781. }
  782. .content code {
  783. padding: 2px 5px;
  784. background: #fafafa;
  785. color: #d14;
  786. border: 1px solid #eee;
  787. border-radius: 3px;
  788. }
  789. .content pre code {
  790. background: transparent;
  791. color: #fff;
  792. border: none;
  793. }
  794. .content blockquote {
  795. margin: 0;
  796. padding: 5px 20px;
  797. background: #fafafa;
  798. display: block;
  799. color: #333;
  800. border-top: 1px solid #ddd;
  801. border-bottom: 1px solid #ddd;
  802. }
  803. .content blockquote p {
  804. margin: 0;
  805. }
  806. /*=== Notification and actualize notification */
  807. .notification {
  808. background: #222;
  809. color: #fff;
  810. font-size: 0.9em;
  811. border: none;
  812. border-radius: 0 0 12px 12px;
  813. 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;
  814. text-align: center;
  815. font-weight: bold;
  816. position: absolute;
  817. top: 0;
  818. vertical-align: middle;
  819. }
  820. .notification.good {
  821. color: #c95;
  822. }
  823. .notification.bad {
  824. background: #fdd;
  825. color: #844;
  826. }
  827. .notification a.close {
  828. padding: 0 15px;
  829. line-height: 3em;
  830. }
  831. .notification#actualizeProgress {
  832. line-height: 2em;
  833. }
  834. /*=== "Load more" part */
  835. #bigMarkAsRead {
  836. background: #ede7de;
  837. color: #666;
  838. box-shadow: 0 1px rgba(255,255,255,0.28)inset;
  839. text-align: center;
  840. text-decoration: none;
  841. text-shadow: 0 -1px 0 #aaa;
  842. }
  843. #bigMarkAsRead:hover {
  844. background: #ede7de;
  845. background: radial-gradient(circle at 50% -25% , #ccc 0%, #ede7de 50%);
  846. color: #000;
  847. }
  848. #bigMarkAsRead:hover .bigTick {
  849. text-shadow: 0 0 10px #666;
  850. }
  851. .switch.active {
  852. background-color: #d18114;
  853. }
  854. /*=== Navigation menu (for articles) */
  855. #nav_entries {
  856. background: linear-gradient(-180deg, #222 0%, #171717 100%) #222;
  857. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  858. width: 235px;
  859. border-top: 1px solid #171717;
  860. box-shadow: 0 1px rgba(255,255,255,0.08) inset, 0 -2px 2px #171717;
  861. text-align: center;
  862. line-height: 3em;
  863. table-layout: fixed;
  864. }
  865. /*=== READER VIEW */
  866. /*================*/
  867. #stream.reader .flux {
  868. padding: 0 0 50px;
  869. background: #f0f0f0;
  870. color: #333;
  871. border: none;
  872. }
  873. #stream.reader .flux .author {
  874. margin: 0 0 10px;
  875. color: #666;
  876. font-size: 90%;
  877. }
  878. /*=== GLOBAL VIEW */
  879. /*================*/
  880. #stream.global {
  881. padding: 24px 0;
  882. box-shadow: 0px 8px 8px #c2bcb3 inset;
  883. }
  884. .box.category .box-title {
  885. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #171717;
  886. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  887. font-size: 1.2rem;
  888. border-radius: none;
  889. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  890. line-height: 2em;
  891. text-shadow: 0 1px #ccc;
  892. }
  893. .box.category .box-title .title {
  894. font-weight: normal;
  895. text-decoration: none;
  896. text-align: right;
  897. color: #888;
  898. }
  899. .box.category:not([data-unread="0"]) .box-title .title {
  900. color: #222;
  901. font-weight: bold;
  902. }
  903. .box.category .title:not([data-unread="0"])::after {
  904. background: none;
  905. border: 0;
  906. position: absolute;
  907. top: 5px; left: 10px;
  908. font-weight: bold;
  909. }
  910. .box.category .item.feed {
  911. padding: 2px 10px;
  912. font-size: 0.8rem;
  913. }
  914. .box.category .item.feed:not(.empty):not(.error) .item-title {
  915. color: #222;
  916. }
  917. /*=== PANEL */
  918. /*===========*/
  919. #panel {
  920. background: #ede7de;
  921. border-radius: 8px;
  922. box-shadow: 0px 0px 4px #000;
  923. }
  924. /*=== DIVERS */
  925. /*===========*/
  926. .aside.aside_feed .nav-form input,.aside.aside_feed .nav-form select {
  927. width: 130px;
  928. }
  929. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  930. left: -20px;
  931. }
  932. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  933. left: 33px;
  934. }
  935. /*=== STATISTICS */
  936. /*===============*/
  937. .stat {
  938. margin: 10px 0 20px;
  939. }
  940. .stat th,
  941. .stat td,
  942. .stat tr {
  943. border: none;
  944. }
  945. .stat > table td,
  946. .stat > table th {
  947. background: rgba(255,255,255,0.38);
  948. border-bottom: 1px solid #ccc;
  949. box-shadow: 0 1px #fff;
  950. }
  951. .stat > .horizontal-list {
  952. margin: 0 0 5px;
  953. }
  954. .stat > .horizontal-list .item {
  955. overflow: hidden;
  956. white-space: nowrap;
  957. text-overflow: ellipsis;
  958. }
  959. .stat > .horizontal-list .item:first-child {
  960. width: 250px;
  961. }
  962. /*=== LOGS */
  963. /*=========*/
  964. .loglist {
  965. border: 1px solid #aaa;
  966. border-radius: 5px;
  967. overflow: hidden;
  968. }
  969. .log {
  970. padding: 5px 10px;
  971. background: #fafafa;
  972. color: #333;
  973. font-size: 0.8rem;
  974. }
  975. .log+.log {
  976. border-top: 1px solid #aaa;
  977. }
  978. .log .date {
  979. display: block;
  980. font-weight: bold;
  981. }
  982. .log.error {
  983. background: #fdd;
  984. color: #844;
  985. }
  986. .log.warning {
  987. background: #ffe;
  988. color: #c95;
  989. }
  990. .log.notice {
  991. background: #f4f4f4;
  992. color: #aaa;
  993. }
  994. .log.debug {
  995. background: #333;
  996. color: #eee;
  997. }
  998. #slider.active {
  999. background: #f8f8f8;
  1000. box-shadow: 4px 0 4px rgba(15, 15, 15, 0.55);
  1001. }
  1002. #close-slider.active {
  1003. background: rgba(15, 15, 15, 0.35);
  1004. }
  1005. /*=== MOBILE */
  1006. /*===========*/
  1007. @media screen and (max-width: 840px) {
  1008. .form-group .group-name {
  1009. padding-bottom: 0;
  1010. text-align: right;
  1011. }
  1012. .header {
  1013. display: table;
  1014. }
  1015. .nav-login {
  1016. display: none;
  1017. }
  1018. .aside {
  1019. width: 0;
  1020. border-top: none;
  1021. box-shadow: -3px 0 3px #000;
  1022. transition: width 200ms linear;
  1023. }
  1024. .aside:target {
  1025. width: 235px;
  1026. }
  1027. .aside .toggle_aside,
  1028. #panel .close,
  1029. .dropdown-menu .toggle_aside {
  1030. background: #171717;
  1031. display: block;
  1032. width: 100%;
  1033. height: 40px;
  1034. border-radius: 8px 0 8px 0;
  1035. box-shadow: 0 1px rgba(255,255,255,0.08);
  1036. line-height: 40px;
  1037. text-align: center;
  1038. }
  1039. .aside.aside_feed {
  1040. padding: 0;
  1041. }
  1042. .nav_menu .btn {
  1043. margin: 5px 10px;
  1044. padding: 3px 5px;
  1045. min-height: 0;
  1046. }
  1047. .nav_menu .stick {
  1048. margin: 0 10px;
  1049. }
  1050. .nav_menu .stick .btn {
  1051. margin: 5px 0;
  1052. }
  1053. .nav_menu .search {
  1054. display: none;
  1055. }
  1056. .nav_menu .search input {
  1057. padding: 3px 5px;
  1058. max-width: 97%;
  1059. width: 90px;
  1060. }
  1061. .nav_menu .search input:focus {
  1062. width: 400px;
  1063. }
  1064. .dropdown-target:target ~ .dropdown-toggle::after {
  1065. background-color: #222;
  1066. border-top: 1px solid #171717;
  1067. border-right: 1px solid #171717;
  1068. }
  1069. .day .name {
  1070. display: none;
  1071. }
  1072. .notification a.close {
  1073. background: transparent;
  1074. display: block;
  1075. right: 0;
  1076. }
  1077. .notification a.close:hover {
  1078. opacity: 0.5;
  1079. }
  1080. .notification a.close .icon {
  1081. display: none;
  1082. }
  1083. #nav_entries {
  1084. width: 100%;
  1085. }
  1086. .post {
  1087. padding-right: 15px;
  1088. padding-left: 15px;
  1089. }
  1090. #close-slider.active {
  1091. background: #171717;
  1092. box-shadow: 0 1px rgba(255,255,255,0.08)
  1093. }
  1094. }
  1095. @media (max-width: 700px) {
  1096. .nav-login {
  1097. display: inline-block;
  1098. width: 100%;
  1099. }
  1100. .nav_menu .search {
  1101. display: inline-block;
  1102. }
  1103. }