screwdriver.rtl.css 24 KB

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