screwdriver.rtl.css 23 KB

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