screwdriver.rtl.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347
  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. /*=== Navigation menu (for articles) */
  867. #nav_entries {
  868. background: linear-gradient(-180deg, #222 0%, #171717 100%) #222;
  869. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  870. width: 235px;
  871. border-top: 1px solid #171717;
  872. box-shadow: 0 1px rgba(255,255,255,0.08) inset, 0 -2px 2px #171717;
  873. text-align: center;
  874. line-height: 3em;
  875. table-layout: fixed;
  876. }
  877. /*=== READER VIEW */
  878. /*================*/
  879. #stream.reader .flux {
  880. padding: 0 0 50px;
  881. background: #f0f0f0;
  882. color: #333;
  883. border: none;
  884. }
  885. #stream.reader .flux .author {
  886. margin: 0 0 10px;
  887. color: #666;
  888. font-size: 90%;
  889. }
  890. /*=== GLOBAL VIEW */
  891. /*================*/
  892. #stream.global {
  893. padding: 24px 0;
  894. box-shadow: 0px 8px 8px #c2bcb3 inset;
  895. }
  896. .box.category .box-title {
  897. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #171717;
  898. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  899. font-size: 1.2rem;
  900. border-radius: none;
  901. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  902. line-height: 2em;
  903. text-shadow: 0 1px #ccc;
  904. }
  905. .box.category .box-title .title {
  906. font-weight: normal;
  907. text-decoration: none;
  908. text-align: right;
  909. color: #888;
  910. }
  911. .box.category:not([data-unread="0"]) .box-title .title {
  912. color: #222;
  913. font-weight: bold;
  914. }
  915. .box.category .title:not([data-unread="0"])::after {
  916. background: none;
  917. border: 0;
  918. position: absolute;
  919. top: 5px; left: 10px;
  920. font-weight: bold;
  921. }
  922. .box.category .item.feed {
  923. padding: 2px 10px;
  924. font-size: 0.8rem;
  925. }
  926. .box.category .item.feed:not(.empty):not(.error) .item-title {
  927. color: #222;
  928. }
  929. /*=== PANEL */
  930. /*===========*/
  931. #panel {
  932. background: #ede7de;
  933. border-radius: 8px;
  934. box-shadow: 0px 0px 4px #000;
  935. }
  936. /*=== DIVERS */
  937. /*===========*/
  938. .aside.aside_feed .nav-form input,.aside.aside_feed .nav-form select {
  939. width: 130px;
  940. }
  941. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  942. left: -20px;
  943. }
  944. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  945. left: 33px;
  946. }
  947. /*=== STATISTICS */
  948. /*===============*/
  949. .stat {
  950. margin: 10px 0 20px;
  951. }
  952. .stat th,
  953. .stat td,
  954. .stat tr {
  955. border: none;
  956. }
  957. .stat > table td,
  958. .stat > table th {
  959. background: rgba(255,255,255,0.38);
  960. border-bottom: 1px solid #ccc;
  961. box-shadow: 0 1px #fff;
  962. }
  963. .stat > .horizontal-list {
  964. margin: 0 0 5px;
  965. }
  966. .stat > .horizontal-list .item {
  967. overflow: hidden;
  968. white-space: nowrap;
  969. text-overflow: ellipsis;
  970. }
  971. .stat > .horizontal-list .item:first-child {
  972. width: 250px;
  973. }
  974. /*=== LOGS */
  975. /*=========*/
  976. .loglist {
  977. border: 1px solid #aaa;
  978. border-radius: 5px;
  979. overflow: hidden;
  980. }
  981. .log {
  982. padding: 5px 10px;
  983. background: #fafafa;
  984. color: #333;
  985. font-size: 0.8rem;
  986. }
  987. .log+.log {
  988. border-top: 1px solid #aaa;
  989. }
  990. .log .date {
  991. display: block;
  992. font-weight: bold;
  993. }
  994. .log.error {
  995. background: #fdd;
  996. color: #844;
  997. }
  998. .log.warning {
  999. background: #ffe;
  1000. color: #c95;
  1001. }
  1002. .log.notice {
  1003. background: #f4f4f4;
  1004. color: #aaa;
  1005. }
  1006. .log.debug {
  1007. background: #333;
  1008. color: #eee;
  1009. }
  1010. #slider.active {
  1011. background: #f8f8f8;
  1012. box-shadow: 4px 0 4px rgba(15, 15, 15, 0.55);
  1013. }
  1014. #close-slider.active {
  1015. background: rgba(15, 15, 15, 0.35);
  1016. }
  1017. /*=== MOBILE */
  1018. /*===========*/
  1019. @media screen and (max-width: 840px) {
  1020. .form-group .group-name {
  1021. padding-bottom: 0;
  1022. text-align: right;
  1023. }
  1024. .header {
  1025. display: table;
  1026. }
  1027. .nav-login {
  1028. display: none;
  1029. }
  1030. .aside {
  1031. width: 0;
  1032. border-top: none;
  1033. box-shadow: -3px 0 3px #000;
  1034. transition: width 200ms linear;
  1035. }
  1036. .aside:target {
  1037. width: 235px;
  1038. }
  1039. .aside .toggle_aside,
  1040. #panel .close,
  1041. .dropdown-menu .toggle_aside {
  1042. background: #171717;
  1043. display: block;
  1044. width: 100%;
  1045. height: 40px;
  1046. border-radius: 8px 0 8px 0;
  1047. box-shadow: 0 1px rgba(255,255,255,0.08);
  1048. line-height: 40px;
  1049. text-align: center;
  1050. }
  1051. .aside.aside_feed {
  1052. padding: 0;
  1053. }
  1054. .nav_menu .btn {
  1055. margin: 5px 10px;
  1056. padding: 3px 5px;
  1057. min-height: 0;
  1058. }
  1059. .nav_menu .stick {
  1060. margin: 0 10px;
  1061. }
  1062. .nav_menu .stick .btn {
  1063. margin: 5px 0;
  1064. }
  1065. .nav_menu .search {
  1066. display: none;
  1067. }
  1068. .nav_menu .search input {
  1069. padding: 3px 5px;
  1070. max-width: 97%;
  1071. width: 90px;
  1072. }
  1073. .nav_menu .search input:focus {
  1074. width: 400px;
  1075. }
  1076. .dropdown-target:target ~ .dropdown-toggle::after {
  1077. background-color: #222;
  1078. border-top: 1px solid #171717;
  1079. border-right: 1px solid #171717;
  1080. }
  1081. .day .name {
  1082. display: none;
  1083. }
  1084. .pagination {
  1085. margin: 0 0 3.5em;
  1086. }
  1087. .notification a.close {
  1088. background: transparent;
  1089. display: block;
  1090. right: 0;
  1091. }
  1092. .notification a.close:hover {
  1093. opacity: 0.5;
  1094. }
  1095. .notification a.close .icon {
  1096. display: none;
  1097. }
  1098. #nav_entries {
  1099. width: 100%;
  1100. }
  1101. .post {
  1102. padding-right: 15px;
  1103. padding-left: 15px;
  1104. }
  1105. #close-slider.active {
  1106. background: #171717;
  1107. box-shadow: 0 1px rgba(255,255,255,0.08)
  1108. }
  1109. }
  1110. @media (max-width: 700px) {
  1111. .nav-login {
  1112. display: inline-block;
  1113. width: 100%;
  1114. }
  1115. .nav_menu .search {
  1116. display: inline-block;
  1117. }
  1118. }