screwdriver.rtl.css 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343
  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 a: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. .pagination .item.pager-current {
  400. font-weight: bold;
  401. font-size: 1.5em;
  402. }
  403. .pagination .item a {
  404. display: block;
  405. color: #333;
  406. font-style: italic;
  407. line-height: 3em;
  408. text-decoration: none;
  409. }
  410. .pagination .item a:hover {
  411. background: #ddd;
  412. color: inherit
  413. }
  414. .pagination:first-child .item {
  415. border-bottom: 1px solid #aaa;
  416. }
  417. .pagination:last-child .item {
  418. border-top: 1px solid #ddd;
  419. }
  420. /*=== Boxes */
  421. .box {
  422. background: #ede7de;
  423. border-radius: 4px;
  424. box-shadow: 0 1px #fff;
  425. }
  426. .box .box-title {
  427. margin: 0;
  428. padding: 5px 10px;
  429. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #171717;
  430. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  431. color: #888;
  432. font-size: 1.1rem;
  433. border-radius: 4px 4px 0 0;
  434. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  435. text-shadow: 0 1px #ccc;
  436. font-weight: normal;
  437. }
  438. .box .box-title .configure {
  439. margin-left: 4px;
  440. }
  441. .box .box-content {
  442. padding-right: 30px;
  443. max-height: 260px;
  444. }
  445. .box .box-content .item {
  446. font-size: 0.9rem;
  447. line-height: 2.5em;
  448. }
  449. /*=== Tree */
  450. .tree {
  451. margin: 10px 0;
  452. }
  453. .tree-folder-title {
  454. position: relative;
  455. padding: 0 10px;
  456. line-height: 2.5rem;
  457. font-size: 0.9rem;
  458. }
  459. .tree-folder-title .title {
  460. background: inherit;
  461. color: #fff;
  462. }
  463. .tree-folder-title .title:hover {
  464. text-decoration: none;
  465. }
  466. .tree-folder.active .tree-folder-title {
  467. background: linear-gradient(-180deg, #222 0%, #171717 100%) #171717;
  468. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  469. color: #fff;
  470. box-shadow: 0px 1px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset;
  471. text-shadow: 0 0 2px rgba(255,255,255,0.28);
  472. }
  473. .tree-folder-items {
  474. padding: 8px 0;
  475. background: #171717;
  476. box-shadow: 0 4px 4px #171717 inset, 0 1px rgba(255,255,255,0.08),0 -1px rgba(255,255,255,0.08);
  477. }
  478. .tree-folder-items > .item {
  479. padding: 0 10px;
  480. line-height: 2.5rem;
  481. font-size: 0.8rem;
  482. }
  483. .tree-folder-items > .item.active {
  484. margin: 0px 8px;
  485. background: linear-gradient(-180deg, #222 0%, #171717 100%) #171717;
  486. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  487. border-radius: 4px;
  488. box-shadow: 0px 1px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset, 0 2px 2px #111;
  489. }
  490. .tree-folder-items > .item > a {
  491. text-decoration: none;
  492. color: #fff;
  493. font-size: 0.92em;
  494. }
  495. /*=== Scrollbar */
  496. @supports (scrollbar-width: thin) {
  497. #sidebar {
  498. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
  499. }
  500. #sidebar:hover {
  501. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
  502. }
  503. }
  504. @supports not (scrollbar-width: thin) {
  505. #sidebar::-webkit-scrollbar-thumb {
  506. background: rgba(255, 255, 255, 0.1);
  507. }
  508. #sidebar:hover::-webkit-scrollbar-thumb {
  509. background: rgba(255, 255, 255, 0.3);
  510. }
  511. }
  512. /*=== STRUCTURE */
  513. /*===============*/
  514. /*=== Header */
  515. .header {
  516. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  517. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  518. height: 55px;
  519. }
  520. .header > .item {
  521. padding: 0;
  522. vertical-align: middle;
  523. text-align: center;
  524. }
  525. .header > .item.title .logo {
  526. margin: 0.5em 0;
  527. height: 35px;
  528. filter: invert(80%);
  529. }
  530. .header > .item.title {
  531. width: 250px;
  532. }
  533. .header > .item.search input {
  534. width: 230px;
  535. }
  536. .header .item.search input:focus {
  537. width: 350px;
  538. }
  539. /*=== Body */
  540. #global {
  541. background: #ede7de;
  542. height: calc(100% - 60px);
  543. }
  544. .aside {
  545. background: #222;
  546. width: 235px;
  547. border-top: 1px solid #ccc;
  548. border-radius: 12px 0px 0px 0px;
  549. box-shadow: 0px -1px #fff, 0 2px 2px #171717 inset;
  550. }
  551. .aside.aside_feed {
  552. padding: 10px 0;
  553. text-align: center;
  554. }
  555. .aside.aside_feed .tree {
  556. margin: 10px 0 50px;
  557. }
  558. /*=== Aside main page (categories) */
  559. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  560. background-color: #d18114;
  561. }
  562. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  563. background-color: #222;
  564. color: #ccc;
  565. border: 1px solid #333;
  566. }
  567. .aside_feed .btn-important {
  568. border: none;
  569. }
  570. /*=== Aside main page (feeds) */
  571. .feed.item.empty,
  572. .feed.item.empty > a {
  573. color: #e67e22;
  574. }
  575. .feed.item.error,
  576. .feed.item.error > a {
  577. color: #bd362f;
  578. }
  579. .aside_feed .tree-folder-items .dropdown-menu::after {
  580. right: 2px;
  581. }
  582. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  583. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  584. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  585. border-radius: 3px;
  586. }
  587. /*=== Configuration pages */
  588. .post {
  589. padding: 10px 50px;
  590. font-size: 0.9em;
  591. }
  592. .post form {
  593. margin: 10px 0;
  594. }
  595. .post.content {
  596. max-width: 550px;
  597. }
  598. /*=== Prompt (centered) */
  599. .prompt {
  600. max-width: 20rem;
  601. margin-right: auto;
  602. margin-left: auto;
  603. padding-right: .5rem;
  604. padding-left: .5rem;
  605. text-align: center;
  606. text-shadow: 0 1px rgba(255,255,255,0.08);
  607. }
  608. .prompt form {
  609. margin-top: 2rem;
  610. margin-bottom: 3rem;
  611. text-align: right;
  612. }
  613. .prompt .form-group {
  614. margin-bottom: 1rem;
  615. }
  616. .prompt .form-group::after {
  617. display: none;
  618. }
  619. .prompt .form-group.form-group-actions {
  620. display: flex;
  621. margin-top: 2rem;
  622. align-items: center;
  623. justify-content: space-between;
  624. }
  625. .prompt .stick,
  626. .prompt input {
  627. width: 100%;
  628. box-sizing: border-box;
  629. }
  630. .prompt input#username,.prompt input#passwordPlain {
  631. background: #fff;
  632. border: solid 1px #ccc;
  633. box-shadow: 0 4px -4px #ccc inset,0px 1px rgba(255, 255, 255, 0.08);
  634. }
  635. .prompt input#username:focus,.prompt input#passwordPlain:focus {
  636. border: solid 1px #e7ab34;
  637. box-shadow: 0 0 3px #e7ab34;
  638. }
  639. .prompt .btn.btn-important {
  640. padding-right: 1.5rem;
  641. padding-left: 1.5rem;
  642. font-size: 1.1rem;
  643. }
  644. .prompt p {
  645. margin: 20px 0;
  646. }
  647. /*=== New article notification */
  648. #new-article {
  649. background: #0084cc;
  650. text-align: center;
  651. font-size: 0.9em;
  652. }
  653. #new-article > a {
  654. line-height: 3em;
  655. color: #fff;
  656. font-weight: bold;
  657. }
  658. #new-article > a:hover {
  659. text-decoration: none;
  660. background: #06c;
  661. }
  662. /*=== Day indication */
  663. .day {
  664. padding: 0 10px;
  665. background: linear-gradient(0deg, #ede7de 0%, #c2bcb3 100%) #ede7de;
  666. background: -webkit-linear-gradient(bottom, #c2bcb3 0%, #fff 100%);
  667. color: #666;
  668. box-shadow: 0 1px #bdb7ae inset, 0 -1px rgba(255,255,255,0.28) inset;
  669. font-style: italic;
  670. line-height: 3em;
  671. text-shadow: 0 1px rgba(255,255,255,0.28);
  672. text-align: center;
  673. }
  674. #new-article + .day {
  675. border-top: none;
  676. }
  677. .day .name {
  678. display: none;
  679. }
  680. /*=== Index menu */
  681. .nav_menu {
  682. padding: 5px 0;
  683. background: #ede7de;
  684. border-bottom: 1px solid #ccc;
  685. box-shadow: 0 -1px rgba(255, 255, 255, 0.28) inset;
  686. text-align: center;
  687. }
  688. #panel >.nav_menu {
  689. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  690. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  691. }
  692. #panel > .nav_menu > #nav_menu_read_all {
  693. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  694. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  695. border: 1px solid #ccc;
  696. border-radius: 4px;
  697. box-shadow: 0px 1px #fff;
  698. }
  699. #panel > .nav_menu > #nav_menu_read_all .dropdown > .btn.dropdown-toggle {
  700. border: none;
  701. border-right: solid 1px #ccc;
  702. border-radius: 4px 0 0 4px;
  703. }
  704. /*=== Feed articles */
  705. .flux_content {
  706. background: #fff;
  707. border-radius: 10px;
  708. }
  709. .flux {
  710. background: #ede7de;
  711. }
  712. .flux:hover {
  713. background: #f9f7f4;
  714. }
  715. .flux:not(.current):hover .item.title {
  716. background: #f9f7f4;
  717. }
  718. .flux.current .flux .item.title a {
  719. text-shadow: 0 0 2px #ccc;
  720. }
  721. .flux.favorite {
  722. background: #fff6da;
  723. }
  724. .flux.favorite:not(.current):hover {
  725. background: #f9f7f4;
  726. }
  727. .flux.favorite:not(.current):hover .item.title {
  728. background: #f9f7f4;
  729. }
  730. .flux.current {
  731. margin: 3px 6px;
  732. background: linear-gradient(0deg, #ede7de 0%, #fff 100%) #ede7de;
  733. background: -webkit-linear-gradient(bottom, #ede7de 0%, #fff 100%);
  734. border-radius: 10px;
  735. box-shadow: 0 -1px #fff inset, 0 2px #ccc;
  736. }
  737. .flux .item.title a {
  738. color: #aca8a3;
  739. }
  740. .flux.not_read .item.title a,
  741. .flux.favorite .item.title a {
  742. color: #333;
  743. }
  744. .flux.not_read:not(.current):hover .item.title a {
  745. color: #50504f;
  746. }
  747. .flux.current .item.title a {
  748. color: #0f0f0f;
  749. }
  750. .flux_header {
  751. font-size: 0.8rem;
  752. border-top: 1px solid #ddd;
  753. box-shadow: 0 -1px rgba(255,255,255,0.28) inset;
  754. cursor: pointer;
  755. }
  756. .flux_header .title {
  757. font-size: 0.9rem;
  758. }
  759. .flux .website .favicon {
  760. padding: 5px;
  761. }
  762. .flux .item.date {
  763. color: #666;
  764. font-size: 0.7rem;
  765. }
  766. .flux .bottom {
  767. font-size: 0.8rem;
  768. text-align: center;
  769. }
  770. /*=== Content of feed articles */
  771. .content {
  772. padding: 20px 10px;
  773. }
  774. .content > h1.title > a {
  775. color: #000;
  776. }
  777. .content hr {
  778. margin: 30px 10px;
  779. background: #ddd;
  780. height: 1px;
  781. border: 0;
  782. box-shadow: 0 2px 5px #ccc;
  783. }
  784. .content pre {
  785. margin: 10px auto;
  786. padding: 10px 20px;
  787. overflow: auto;
  788. background: #222;
  789. color: #fff;
  790. font-size: 0.9rem;
  791. border-radius: 3px;
  792. }
  793. .content code {
  794. padding: 2px 5px;
  795. background: #fafafa;
  796. color: #d14;
  797. border: 1px solid #eee;
  798. border-radius: 3px;
  799. }
  800. .content pre code {
  801. background: transparent;
  802. color: #fff;
  803. border: none;
  804. }
  805. .content blockquote {
  806. margin: 0;
  807. padding: 5px 20px;
  808. background: #fafafa;
  809. display: block;
  810. color: #333;
  811. border-top: 1px solid #ddd;
  812. border-bottom: 1px solid #ddd;
  813. }
  814. .content blockquote p {
  815. margin: 0;
  816. }
  817. /*=== Notification and actualize notification */
  818. .notification {
  819. background: #222;
  820. color: #fff;
  821. font-size: 0.9em;
  822. border: none;
  823. border-radius: 0 0 12px 12px;
  824. 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;
  825. text-align: center;
  826. font-weight: bold;
  827. position: absolute;
  828. top: 0;
  829. z-index: 10;
  830. vertical-align: middle;
  831. }
  832. .notification.good {
  833. color: #c95;
  834. }
  835. .notification.bad {
  836. background: #fdd;
  837. color: #844;
  838. }
  839. .notification a.close {
  840. padding: 0 15px;
  841. line-height: 3em;
  842. }
  843. .notification#actualizeProgress {
  844. line-height: 2em;
  845. }
  846. /*=== "Load more" part */
  847. #bigMarkAsRead {
  848. background: #ede7de;
  849. color: #666;
  850. box-shadow: 0 1px rgba(255,255,255,0.28)inset;
  851. text-align: center;
  852. text-decoration: none;
  853. text-shadow: 0 -1px 0 #aaa;
  854. }
  855. #bigMarkAsRead:hover {
  856. background: #ede7de;
  857. background: radial-gradient(circle at 50% -25% , #ccc 0%, #ede7de 50%);
  858. color: #000;
  859. }
  860. #bigMarkAsRead:hover .bigTick {
  861. text-shadow: 0 0 10px #666;
  862. }
  863. .switch.active {
  864. background-color: #d18114;
  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. .notification a.close {
  1085. background: transparent;
  1086. display: block;
  1087. right: 0;
  1088. }
  1089. .notification a.close:hover {
  1090. opacity: 0.5;
  1091. }
  1092. .notification a.close .icon {
  1093. display: none;
  1094. }
  1095. #nav_entries {
  1096. width: 100%;
  1097. }
  1098. .post {
  1099. padding-right: 15px;
  1100. padding-left: 15px;
  1101. }
  1102. #close-slider.active {
  1103. background: #171717;
  1104. box-shadow: 0 1px rgba(255,255,255,0.08)
  1105. }
  1106. }
  1107. @media (max-width: 700px) {
  1108. .nav-login {
  1109. display: inline-block;
  1110. width: 100%;
  1111. }
  1112. .nav_menu .search {
  1113. display: inline-block;
  1114. }
  1115. }