screwdriver.rtl.css 24 KB

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