screwdriver.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197
  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 2px 2px #eee 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. form#add_rss .stick input, .dropdown-menu select{
  117. background:#393939;
  118. box-shadow: 0 2px 2px #171717 inset,0 1px rgba(255,255,255,0.08);
  119. border-left:solid 1px #171717;
  120. border-top:solid 1px #171717;
  121. border-bottom:solid 1px #171717;
  122. border-right:none;
  123. color:#fff;
  124. }
  125. form#add_rss .stick .btn{
  126. background:linear-gradient(180deg, #222 0%, #171717 100%) #171717;
  127. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  128. box-shadow:0 1px rgba(255,255,255,0.08), 0px 1px rgba(255, 255, 255, 0.08) inset;
  129. border-right:solid 1px #171717;
  130. border-top:solid 1px #171717;
  131. border-bottom:solid 1px #171717;
  132. border-left:none;
  133. }
  134. form#add_rss .stick .btn.dropdown-toggle{
  135. border-right:solid 1px #171717;
  136. border-top:solid 1px #171717;
  137. border-bottom:solid 1px #171717;
  138. border-left:solid 1px #171717;
  139. }
  140. .stick {
  141. vertical-align: middle;
  142. font-size: 0;
  143. }
  144. .stick input,
  145. .stick .btn {
  146. border-radius: 0;
  147. }
  148. .stick .btn:first-child,.stick input:first-child {
  149. border-radius: 6px 0 0 6px;
  150. }
  151. .stick .btn-important:first-child {
  152. }
  153. .stick .btn:last-child, .stick input:last-child {
  154. border-radius: 0 6px 6px 0;
  155. }
  156. .stick .btn + .btn,
  157. .stick .btn + input,
  158. .stick .btn + .dropdown > .btn,
  159. .stick input + .btn,
  160. .stick input + input,
  161. .stick input + .dropdown > .btn,
  162. .stick .dropdown + .btn,
  163. .stick .dropdown + input,
  164. .stick .dropdown + .dropdown > .btn {
  165. border-left: none;
  166. }
  167. .stick .btn + .dropdown > .btn {
  168. border-left: none;
  169. border-radius: 0 3px 3px 0;
  170. }
  171. .btn {
  172. display: inline-block;
  173. min-height: 37px;
  174. min-width: 15px;
  175. margin: 0;
  176. padding: 5px 10px;
  177. color:#222;
  178. border: solid 1px #ccc;
  179. border-radius: 4px;
  180. background: linear-gradient(0deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
  181. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #FFF 100%);
  182. text-shadow: 0px -1px rgba(255,255,255,0.08);
  183. font-size: 0.9rem;
  184. vertical-align: middle;
  185. cursor: pointer;
  186. overflow: hidden;
  187. }
  188. a.btn {
  189. min-height: 25px;
  190. line-height: 25px;
  191. }
  192. .btn:hover {
  193. text-shadow: 0 0 2px #fff;
  194. text-decoration:none;
  195. }
  196. .btn.active,.btn:active,.dropdown-target:target ~ .btn.dropdown-toggle {
  197. background: linear-gradient(180deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
  198. background: -webkit-linear-gradient(top, #EDE7DE 0%, #FFF 100%);
  199. }
  200. #loginButton.btn{
  201. border:none;
  202. box-shadow: 0px 1px rgba(255, 255, 255, 0.08) inset,0 -1px #171717,0px 1px rgba(255, 255, 255, 0.08);
  203. }
  204. .nav_menu .btn.active, .nav_menu .btn:active, .nav_menu .dropdown-target:target ~ .btn.dropdown-toggle{
  205. box-shadow: 0px 2px #E2972A;
  206. border-radius: 0;
  207. background:transparent;
  208. }
  209. .nav_menu .btn {
  210. border: 0;
  211. background:transparent;
  212. }
  213. .read_all {
  214. color:#222;
  215. }
  216. .btn.dropdown-toggle[href="#dropdown-configure"]{
  217. background: linear-gradient(0deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
  218. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #FFF 100%);
  219. border-radius: 4px;
  220. border: solid 1px #ccc;
  221. box-shadow: 0 1px #fff;
  222. }
  223. .btn.dropdown-toggle:active {
  224. background:transparent;
  225. }
  226. .btn-important {
  227. background: linear-gradient(180deg, #E4992C 0%, #D18114 100%) #E4992C;
  228. background: -webkit-linear-gradient(top, #E4992C 0%, #D18114 100%);
  229. color: #FFF;
  230. box-shadow: 0 1px rgba(255,255,255,0.08) inset;
  231. border-radius: 4px;
  232. text-shadow: 0px -1px rgba(255,255,255,0.08);
  233. font-weight: normal;
  234. }
  235. .btn-important:hover {
  236. }
  237. .btn-important:active {
  238. background: linear-gradient(0deg, #E4992C 0%, #D18114 100%) #E4992C;
  239. background: -webkit-linear-gradient(bottom, #E4992C 0%, #D18114 100%);
  240. }
  241. .btn-attention {
  242. background: #E95B57;
  243. background: linear-gradient(to bottom, #E95B57, #BD362F);
  244. background: -webkit-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  245. color: #fff;
  246. border: 1px solid #C44742;
  247. text-shadow: 0px -1px 0px #666;
  248. }
  249. .btn-attention:hover {
  250. background: linear-gradient(to bottom, #D14641, #BD362F);
  251. background: -webkit-linear-gradient(top, #D14641 0%, #BD362F 100%);
  252. }
  253. .btn-attention:active {
  254. background: #BD362F;
  255. box-shadow: none;
  256. }
  257. .btn[type="reset"]{
  258. color: #fff;
  259. background:linear-gradient(180deg, #222 0%, #171717 100%) #171717;
  260. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  261. box-shadow:0 -1px rgba(255,255,255,0.08) inset;
  262. }
  263. /*=== Navigation */
  264. .nav-list .nav-header,
  265. .nav-list .item {
  266. height: 2.5em;
  267. line-height: 2.5em;
  268. font-size: 0.9rem;
  269. }
  270. .nav-list .item:hover {
  271. text-shadow: 0 0 2px rgba(255,255,255,0.28);
  272. color:#fff;
  273. }
  274. .nav-list .item.active {
  275. background: linear-gradient(180deg, #222 0%, #171717 100%) repeat scroll 0% 0% #171717;
  276. background: -webkit-linear-gradient(180deg, #222 0%, #171717 100%);
  277. border-width: medium medium 1px;
  278. border-style: none none solid;
  279. border-color: -moz-use-text-color -moz-use-text-color #171717;
  280. box-shadow: -1px 2px 2px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset;
  281. margin: 0;
  282. }
  283. .nav-list .item.active a {
  284. color: #D18114;
  285. }
  286. .nav-list .disable {
  287. color: #aaa;
  288. background: #fafafa;
  289. text-align: center;
  290. }
  291. .nav-list .item > a {
  292. padding: 0 10px;
  293. color:#ccc;
  294. }
  295. .nav-list a:hover {
  296. text-decoration: none;
  297. }
  298. .nav-list .item.empty a {
  299. color: #f39c12;
  300. }
  301. .nav-list .item.active.empty a {
  302. color: #fff;
  303. background: linear-gradient(180deg, #E4992C 0%, #D18114 100%) #E4992C;
  304. background: -webkit-linear-gradient(180deg, #E4992C 0%, #D18114 100%);
  305. }
  306. .nav-list .item.error a {
  307. color: #BD362F;
  308. }
  309. .nav-list .item.active.error a {
  310. color: #fff;
  311. background: #BD362F;
  312. }
  313. .nav-list .nav-header {
  314. padding: 0 10px;
  315. color: #222;
  316. background: transparent;
  317. }
  318. .nav-list .nav-form {
  319. padding: 3px;
  320. text-align: center;
  321. }
  322. .nav-head {
  323. margin: 0;
  324. background: linear-gradient(0deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
  325. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #FFF 100%);
  326. text-align: right;
  327. }
  328. .nav-head .item {
  329. padding: 5px 10px;
  330. font-size: 0.9rem;
  331. line-height: 1.5rem;
  332. }
  333. /*=== Horizontal-list */
  334. .horizontal-list {
  335. margin: 0;
  336. padding: 0;
  337. }
  338. .horizontal-list .item {
  339. vertical-align: middle;
  340. }
  341. /*=== Dropdown */
  342. .dropdown-menu {
  343. margin: 5px 0 0;
  344. padding: 5px 0;
  345. border: 1px solid #171717;
  346. border-radius: 4px;
  347. box-shadow: 0 0 3px #000;
  348. font-size: 0.8rem;
  349. text-align: left;
  350. background: #222;
  351. }
  352. .dropdown-menu:after {
  353. content: "";
  354. position: absolute;
  355. top: -6px;
  356. right: 13px;
  357. width: 10px;
  358. height: 10px;
  359. background: #222;
  360. border-top: 1px solid #171717;
  361. border-left: 1px solid #171717;
  362. z-index: -10;
  363. transform: rotate(45deg);
  364. -moz-transform: rotate(45deg);
  365. -webkit-transform: rotate(45deg);
  366. -ms-transform: rotate(45deg);
  367. }
  368. .dropdown-header {
  369. display:none;
  370. }
  371. .dropdown-menu > .item {
  372. }
  373. .dropdown-menu > .item > a {
  374. padding: 0 25px;
  375. line-height: 2.5em;
  376. color: #ccc;
  377. }
  378. .dropdown-menu > .item > span,
  379. .dropdown-menu > .item > .as-link {
  380. padding: 0 22px;
  381. line-height: 2em;
  382. color: #ccc;
  383. }
  384. .dropdown-menu > .item:hover {
  385. background: #171717;
  386. color: #fff;
  387. }
  388. .dropdown-menu > .item[aria-checked="true"] > a:before {
  389. font-weight: bold;
  390. margin: 0 0 0 -14px;
  391. }
  392. .dropdown-menu > .item:hover > a {
  393. color: #fff;
  394. text-decoration: none;
  395. }
  396. .dropdown-menu .input select,
  397. .dropdown-menu .input input {
  398. margin: 0 auto 5px;
  399. padding: 2px 5px;
  400. border-radius: 3px;
  401. }
  402. .separator {
  403. margin: 5px 0;
  404. border-bottom: 1px solid #171717;
  405. box-shadow: 0 1px rgba(255,255,255,0.08);
  406. }
  407. /*=== Alerts */
  408. .alert {
  409. margin: 15px auto;
  410. padding: 10px 15px;
  411. background: #f4f4f4;
  412. border: 1px solid #ccc;
  413. border-right: 1px solid #aaa;
  414. border-bottom: 1px solid #aaa;
  415. border-radius: 5px;
  416. color: #aaa;
  417. text-shadow: 0 0 1px #eee;
  418. font-size: 0.9em;
  419. }
  420. .alert-head {
  421. font-size: 1.15em;
  422. }
  423. .alert > a {
  424. color: inherit;
  425. text-decoration: underline;
  426. }
  427. .alert-warn {
  428. background: #ffe;
  429. border: 1px solid #eeb;
  430. color: #c95;
  431. }
  432. .alert-success {
  433. background: #dfd;
  434. border: 1px solid #cec;
  435. color: #484;
  436. }
  437. .alert-error {
  438. background: #fdd;
  439. border: 1px solid #ecc;
  440. color: #844;
  441. }
  442. /*=== Pagination */
  443. .pagination {
  444. background: #fafafa;
  445. text-align: center;
  446. color: #333;
  447. font-size: 0.8em;
  448. }
  449. .content .pagination {
  450. margin: 0;
  451. padding: 0;
  452. }
  453. .pagination .item.pager-current {
  454. font-weight: bold;
  455. font-size: 1.5em;
  456. }
  457. .pagination .item a {
  458. display: block;
  459. color: #333;
  460. font-style: italic;
  461. line-height: 3em;
  462. text-decoration: none;
  463. }
  464. .pagination .item a:hover {
  465. background: #ddd;
  466. }
  467. .pagination:first-child .item {
  468. border-bottom: 1px solid #aaa;
  469. }
  470. .pagination:last-child .item {
  471. border-top: 1px solid #ddd;
  472. }
  473. .pagination .loading,
  474. .pagination a:hover.loading {
  475. background: url("loader.gif") center center no-repeat #fff;
  476. font-size: 0;
  477. }
  478. /*=== Boxes */
  479. .box {
  480. background: #EDE7DE;
  481. border-radius: 4px 4px 0 0;
  482. }
  483. .box .box-title {
  484. margin: 0;
  485. padding: 5px 10px;
  486. background: linear-gradient(0deg, #EDE7DE 0%, #fff 100%) #171717;
  487. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #fff 100%);
  488. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  489. color: #888;
  490. text-shadow: 0 1px #ccc;
  491. border-radius: 4px 4px 0 0;
  492. font-size: 1.1rem;
  493. font-weight: normal;
  494. }
  495. .box .box-content {
  496. max-height: 260px;
  497. }
  498. .box .box-content .item {
  499. padding: 0 10px;
  500. font-size: 0.9rem;
  501. line-height: 2.5em;
  502. }
  503. .box .box-content .item .configure {
  504. visibility: hidden;
  505. }
  506. .box .box-content .item:hover .configure {
  507. visibility: visible;
  508. }
  509. /*=== Tree */
  510. .tree {
  511. margin: 10px 0;
  512. }
  513. .tree-folder-title {
  514. position: relative;
  515. padding: 0 10px;
  516. line-height: 2.5rem;
  517. font-size: 0.9rem;
  518. }
  519. .tree-folder-title .title {
  520. background: inherit;
  521. color: #fff;
  522. }
  523. .tree-folder-title .title:hover {
  524. text-decoration: none;
  525. }
  526. .tree-folder.active .tree-folder-title {
  527. background: linear-gradient(180deg, #222 0%, #171717 100%) #171717;
  528. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  529. box-shadow: 0px 1px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset;
  530. text-shadow: 0 0 2px rgba(255,255,255,0.28);
  531. color: #fff;
  532. }
  533. .tree-folder-items {
  534. background: #171717;
  535. padding: 8px 0;
  536. box-shadow: 0 4px 4px #171717 inset, 0 1px rgba(255,255,255,0.08),0 -1px rgba(255,255,255,0.08);
  537. }
  538. .tree-folder-items > .item {
  539. padding: 0 10px;
  540. line-height: 2.5rem;
  541. font-size: 0.8rem;
  542. }
  543. .tree-folder-items > .item.active {
  544. background: linear-gradient(180deg, #222 0%, #171717 100%) #171717;
  545. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  546. border-radius: 4px;
  547. margin: 0px 8px;
  548. box-shadow: 0px 1px #171717, 0px 1px rgba(255, 255, 255, 0.08) inset, 0 2px 2px #111;
  549. }
  550. .tree-folder-items > .item > a {
  551. text-decoration: none;
  552. color: #fff;
  553. }
  554. .tree-folder-items > .item.active > a {
  555. }
  556. /*=== STRUCTURE */
  557. /*===============*/
  558. /*=== Header */
  559. .header {
  560. height: 55px;
  561. background: linear-gradient(0deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
  562. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #FFF 100%);
  563. }
  564. .header > .item {
  565. padding: 0;
  566. vertical-align: middle;
  567. text-align: center;
  568. }
  569. .header > .item.title .logo {
  570. display: none;
  571. }
  572. .header > .item.title{
  573. width: 250px;
  574. }
  575. .header > .item.title h1 {
  576. margin: 0.5em 0;
  577. }
  578. .header > .item.title h1 a {
  579. text-decoration: none;
  580. font-size: 38px;
  581. color:#ccc;
  582. text-shadow: 0 1px #fff, 0 -1px rgba(162, 162, 162, 1);
  583. }
  584. .header > .item.search input {
  585. width: 230px;
  586. }
  587. .header .item.search input:focus {
  588. width: 350px;
  589. }
  590. /*=== Body */
  591. #global {
  592. background:#EDE7DE;
  593. height: calc(100% - 60px);
  594. }
  595. .aside {
  596. border-radius: 0px 12px 0px 0px;
  597. box-shadow: 0px -1px #FFF, 0 2px 2px #171717 inset;
  598. border-top: 1px solid #CCC;
  599. background: #222;
  600. width: 235px;
  601. }
  602. .aside.aside_feed {
  603. padding: 10px 0;
  604. text-align: center;
  605. }
  606. .aside.aside_feed .tree {
  607. position: sticky;
  608. top: 0;
  609. margin: 10px 0 50px;
  610. }
  611. /*=== Aside main page (categories) */
  612. .aside_feed .tree-folder-title > .title:not([data-unread="0"]):after {
  613. position: absolute;
  614. right: 3px;
  615. padding: 1px 5px;
  616. color: #fff;
  617. text-shadow: 0 1px rgba(255,255,255,0.08);
  618. }
  619. .aside_feed .btn-important {
  620. border: none;
  621. }
  622. /*=== Aside main page (feeds) */
  623. .feed.item.empty,
  624. .feed.item.empty > a {
  625. color: #e67e22;
  626. }
  627. .feed.item.error,
  628. .feed.item.error > a {
  629. color: #BD362F;
  630. }
  631. .aside_feed .tree-folder-items .dropdown-menu:after {
  632. left: 2px;
  633. }
  634. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  635. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  636. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  637. border-radius: 3px;
  638. vertical-align: middle;
  639. }
  640. /*=== Configuration pages */
  641. .post {
  642. padding: 10px 50px;
  643. font-size: 0.9em;
  644. }
  645. .post form {
  646. margin: 10px 0;
  647. }
  648. .post.content {
  649. max-width: 550px;
  650. }
  651. /*=== Prompt (centered) */
  652. .prompt {
  653. text-align: center;
  654. color: #FFF;
  655. background: #222;
  656. padding: 14px 0px;
  657. box-shadow: 0px -1px #FFF, 0px 1px #FFF, 0px 2px 2px #171717 inset, 0px -2px 2px #171717 inset;
  658. text-shadow: 0 -1px #171717, 0 1px rgba(255,255,255,0.08);
  659. }
  660. .prompt label {
  661. text-align: left;
  662. }
  663. .prompt form {
  664. margin: 10px auto 20px auto;
  665. width: 180px;
  666. }
  667. .prompt input {
  668. margin: 5px auto;
  669. width: 100%;
  670. }
  671. .prompt p {
  672. margin: 20px 0;
  673. }
  674. .prompt input#username,.prompt input#passwordPlain{
  675. border:none;
  676. box-shadow: 0px 1px rgba(255, 255, 255, 0.08) inset,0 -1px #171717,0px 1px rgba(255, 255, 255, 0.08);
  677. background:#EDE7DE;
  678. }
  679. .prompt input#username:focus,.prompt input#passwordPlain:focus{
  680. border: solid 1px #E7AB34;
  681. box-shadow: 0 0 3px #E7AB34;
  682. }
  683. /*=== New article notification */
  684. #new-article {
  685. background: #0084CC;
  686. text-align: center;
  687. font-size: 0.9em;
  688. }
  689. #new-article:hover {
  690. background: #0066CC;
  691. }
  692. #new-article > a {
  693. line-height: 3em;
  694. color: #fff;
  695. font-weight: bold;
  696. }
  697. #new-article > a:hover {
  698. text-decoration: none;
  699. }
  700. /*=== Day indication */
  701. .day {
  702. padding: 0 10px;
  703. font-style:italic;
  704. line-height: 3em;
  705. background: #fff;
  706. text-align: center;
  707. }
  708. #new-article + .day {
  709. border-top: none;
  710. }
  711. .day .name {
  712. display: none;
  713. }
  714. /*=== Index menu */
  715. .nav_menu {
  716. background: #EDE7DE;
  717. border-bottom: 1px solid #ccc;
  718. box-shadow:0 -1px #fff inset;
  719. text-align: center;
  720. padding: 5px 0;
  721. }
  722. /*=== Feed articles */
  723. .flux_content {
  724. background: #FFF;
  725. border-radius: 10px;
  726. }
  727. .flux {
  728. background: #EDE7DE;
  729. }
  730. .flux:hover {
  731. background: #F9F7F4;
  732. }
  733. .flux:not(.current):hover .item.title {
  734. background: #F9F7F4;
  735. }
  736. .flux.current .flux .item.title a {
  737. text-shadow:0 0 2px #ccc;
  738. }
  739. .flux.not_read:not(.current):hover .item.title {
  740. opacity:0.85;
  741. }
  742. .flux.favorite {
  743. background: #FFF6DA;
  744. }
  745. .flux.favorite:not(.current):hover{
  746. background: #F9F7F4;
  747. }
  748. .flux.favorite:not(.current):hover .item.title {
  749. background: #F9F7F4;
  750. }
  751. .flux.current {
  752. background: linear-gradient(0deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
  753. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #FFF 100%);
  754. box-shadow: 0 -1px #fff inset, 0 2px #ccc;
  755. border-radius: 10px;
  756. margin: 3px 6px;
  757. }
  758. .flux .item.title {
  759. opacity: 0.35;
  760. }
  761. .flux.favorite .item.title {
  762. opacity: 1;
  763. }
  764. .flux.not_read .item.title {
  765. opacity: 1;
  766. }
  767. .flux.current .item.title a {
  768. color: #0f0f0f;
  769. }
  770. .flux .item.title a {
  771. color: #333;
  772. }
  773. .flux_header {
  774. border-top: 1px solid #ddd;
  775. font-size: 0.8rem;
  776. cursor: pointer;
  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. }
  878. #bigMarkAsRead:hover {
  879. color: #000;
  880. background: #EDE7DE;
  881. background: radial-gradient(circle at 50% -25% , #ccc 0%, #EDE7DE 50%);
  882. }
  883. #bigMarkAsRead:hover .bigTick {
  884. text-shadow: 0 0 10px #666;
  885. }
  886. /*=== Navigation menu (for articles) */
  887. #nav_entries {
  888. background: linear-gradient(180deg, #222 0%, #171717 100%) #222;
  889. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  890. border-top: 1px solid #171717;
  891. text-align: center;
  892. line-height: 3em;
  893. table-layout: fixed;
  894. box-shadow: 0 1px rgba(255,255,255,0.08) inset, 0 -2px 2px #171717;
  895. width:235px;
  896. }
  897. /*=== READER VIEW */
  898. /*================*/
  899. #stream.reader .flux {
  900. padding: 0 0 50px;
  901. border: none;
  902. background: #f0f0f0;
  903. color: #333;
  904. }
  905. #stream.reader .flux .author {
  906. margin: 0 0 10px;
  907. font-size: 90%;
  908. color: #666;
  909. }
  910. /*=== GLOBAL VIEW */
  911. /*================*/
  912. #stream.global {
  913. background: #222;
  914. padding: 24px 0;
  915. box-shadow: 0 1px #fff, 0 -2px 2px #171717 inset, 0 2px 2px #171717 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. }
  960. /*=== DIVERS */
  961. /*===========*/
  962. .aside.aside_feed .nav-form input,.aside.aside_feed .nav-form select {
  963. width: 130px;
  964. }
  965. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  966. right: -20px;
  967. }
  968. .aside.aside_feed .nav-form .dropdown .dropdown-menu:after {
  969. right: 33px;
  970. }
  971. /*=== STATISTICS */
  972. /*===============*/
  973. .stat {
  974. margin: 10px 0 20px;
  975. }
  976. .stat th,
  977. .stat td,
  978. .stat tr {
  979. border: none;
  980. }
  981. .stat > table td,
  982. .stat > table th {
  983. border-bottom: 1px solid #ccc;
  984. background: rgba(255,255,255,0.38);
  985. box-shadow: 0 1px #fff;
  986. }
  987. .stat > .horizontal-list {
  988. margin: 0 0 5px;
  989. }
  990. .stat > .horizontal-list .item {
  991. overflow: hidden;
  992. white-space: nowrap;
  993. text-overflow: ellipsis;
  994. }
  995. .stat > .horizontal-list .item:first-child {
  996. width: 250px;
  997. }
  998. /*=== LOGS */
  999. /*=========*/
  1000. .logs {
  1001. border: 1px solid #aaa;
  1002. border-radius: 5px;
  1003. overflow: hidden;
  1004. }
  1005. .log {
  1006. padding: 5px 10px;
  1007. background: #fafafa;
  1008. color: #333;
  1009. font-size: 0.8rem;
  1010. }
  1011. .log+.log {
  1012. border-top: 1px solid #aaa;
  1013. }
  1014. .log .date {
  1015. display: block;
  1016. font-weight: bold;
  1017. }
  1018. .log.error {
  1019. background: #fdd;
  1020. color: #844;
  1021. }
  1022. .log.warning {
  1023. background: #ffe;
  1024. color: #c95;
  1025. }
  1026. .log.notice {
  1027. background: #f4f4f4;
  1028. color: #aaa;
  1029. }
  1030. .log.debug {
  1031. background: #333;
  1032. color: #eee;
  1033. }
  1034. /*=== MOBILE */
  1035. /*===========*/
  1036. @media screen and (max-width: 840px) {
  1037. .header {
  1038. display: table;
  1039. }
  1040. .nav-login {
  1041. display: none;
  1042. }
  1043. .aside {
  1044. width: 0;
  1045. border-top: none;
  1046. box-shadow: 3px 0 3px #000;
  1047. transition: width 200ms linear;
  1048. -moz-transition: width 200ms linear;
  1049. -webkit-transition: width 200ms linear;
  1050. -o-transition: width 200ms linear;
  1051. -ms-transition: width 200ms linear;
  1052. }
  1053. .aside:target {
  1054. width: 235px;
  1055. }
  1056. .aside .toggle_aside,
  1057. #panel .close {
  1058. display: block;
  1059. width: 100%;
  1060. height: 40px;
  1061. line-height: 40px;
  1062. text-align: center;
  1063. background: #171717;
  1064. box-shadow: 0 1px rgba(255,255,255,0.08);
  1065. border-radius: 0 8px 0 8px;
  1066. }
  1067. .aside .btn-important {
  1068. display: inline-block;
  1069. margin: 20px 0 0;
  1070. }
  1071. .aside.aside_feed {
  1072. padding: 0;
  1073. }
  1074. .aside.aside_feed .tree {
  1075. position: static;
  1076. }
  1077. .nav_menu .btn {
  1078. margin: 5px 10px;
  1079. }
  1080. .nav_menu .stick {
  1081. margin: 0 10px;
  1082. }
  1083. .nav_menu .stick .btn {
  1084. margin: 5px 0;
  1085. }
  1086. .nav_menu .search {
  1087. display: inline-block;
  1088. max-width: 97%;
  1089. }
  1090. .nav_menu .search input {
  1091. max-width: 97%;
  1092. width: 90px;
  1093. }
  1094. .nav_menu .search input:focus {
  1095. width: 400px;
  1096. }
  1097. .day .name {
  1098. display: none;
  1099. }
  1100. .pagination {
  1101. margin: 0 0 3.5em;
  1102. }
  1103. .notification a.close {
  1104. display: block;
  1105. left: 0;
  1106. background: transparent;
  1107. }
  1108. .notification a.close:hover {
  1109. opacity: 0.5;
  1110. }
  1111. .notification a.close .icon {
  1112. display: none;
  1113. }
  1114. .nav_menu .search {
  1115. display: none;
  1116. }
  1117. #nav_entries {
  1118. width: 100%;
  1119. }
  1120. }
  1121. @media (max-width: 700px) {
  1122. .header{
  1123. display: none;
  1124. }
  1125. .nav-login {
  1126. display: inline-block;
  1127. width: 100%;
  1128. }
  1129. .nav_menu .search {
  1130. display: inline-block;
  1131. }
  1132. .aside .btn-important {
  1133. display: none;
  1134. }
  1135. }