screwdriver.css 23 KB

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