4
0

screwdriver.css 23 KB

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