screwdriver.css 23 KB

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