screwdriver.css 23 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195
  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 > a {
  624. color: #e67e22;
  625. }
  626. .feed.item.error > a {
  627. color: #BD362F;
  628. }
  629. .aside_feed .tree-folder-items .dropdown-menu:after {
  630. left: 2px;
  631. }
  632. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  633. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  634. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  635. border-radius: 3px;
  636. vertical-align: middle;
  637. }
  638. /*=== Configuration pages */
  639. .post {
  640. padding: 10px 50px;
  641. font-size: 0.9em;
  642. }
  643. .post form {
  644. margin: 10px 0;
  645. }
  646. .post.content {
  647. max-width: 550px;
  648. }
  649. /*=== Prompt (centered) */
  650. .prompt {
  651. text-align: center;
  652. color: #FFF;
  653. background: #222;
  654. padding: 14px 0px;
  655. box-shadow: 0px -1px #FFF, 0px 1px #FFF, 0px 2px 2px #171717 inset, 0px -2px 2px #171717 inset;
  656. text-shadow: 0 -1px #171717, 0 1px rgba(255,255,255,0.08);
  657. }
  658. .prompt label {
  659. text-align: left;
  660. }
  661. .prompt form {
  662. margin: 10px auto 20px auto;
  663. width: 180px;
  664. }
  665. .prompt input {
  666. margin: 5px auto;
  667. width: 100%;
  668. }
  669. .prompt p {
  670. margin: 20px 0;
  671. }
  672. .prompt input#username,.prompt input#passwordPlain{
  673. border:none;
  674. box-shadow: 0px 1px rgba(255, 255, 255, 0.08) inset,0 -1px #171717,0px 1px rgba(255, 255, 255, 0.08);
  675. background:#EDE7DE;
  676. }
  677. .prompt input#username:focus,.prompt input#passwordPlain:focus{
  678. border: solid 1px #E7AB34;
  679. box-shadow: 0 0 3px #E7AB34;
  680. }
  681. /*=== New article notification */
  682. #new-article {
  683. background: #0084CC;
  684. text-align: center;
  685. font-size: 0.9em;
  686. }
  687. #new-article:hover {
  688. background: #0066CC;
  689. }
  690. #new-article > a {
  691. line-height: 3em;
  692. color: #fff;
  693. font-weight: bold;
  694. }
  695. #new-article > a:hover {
  696. text-decoration: none;
  697. }
  698. /*=== Day indication */
  699. .day {
  700. padding: 0 10px;
  701. font-style:italic;
  702. line-height: 3em;
  703. background: #fff;
  704. text-align: center;
  705. }
  706. #new-article + .day {
  707. border-top: none;
  708. }
  709. .day .name {
  710. display: none;
  711. }
  712. /*=== Index menu */
  713. .nav_menu {
  714. background: #EDE7DE;
  715. border-bottom: 1px solid #ccc;
  716. box-shadow:0 -1px #fff inset;
  717. text-align: center;
  718. padding: 5px 0;
  719. }
  720. /*=== Feed articles */
  721. .flux_content {
  722. background: #FFF;
  723. border-radius: 10px;
  724. }
  725. .flux {
  726. background: #EDE7DE;
  727. }
  728. .flux:hover {
  729. background: #F9F7F4;
  730. }
  731. .flux:not(.current):hover .item.title {
  732. background: #F9F7F4;
  733. }
  734. .flux.current .flux .item.title a {
  735. text-shadow:0 0 2px #ccc;
  736. }
  737. .flux.not_read:not(.current):hover .item.title {
  738. opacity:0.85;
  739. }
  740. .flux.favorite {
  741. background: #FFF6DA;
  742. }
  743. .flux.favorite:not(.current):hover{
  744. background: #F9F7F4;
  745. }
  746. .flux.favorite:not(.current):hover .item.title {
  747. background: #F9F7F4;
  748. }
  749. .flux.current {
  750. background: linear-gradient(0deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
  751. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #FFF 100%);
  752. box-shadow: 0 -1px #fff inset, 0 2px #ccc;
  753. border-radius: 10px;
  754. margin: 3px 6px;
  755. }
  756. .flux .item.title {
  757. opacity: 0.35;
  758. }
  759. .flux.favorite .item.title {
  760. opacity: 1;
  761. }
  762. .flux.not_read .item.title {
  763. opacity: 1;
  764. }
  765. .flux.current .item.title a {
  766. color: #0f0f0f;
  767. }
  768. .flux .item.title a {
  769. color: #333;
  770. }
  771. .flux_header {
  772. border-top: 1px solid #ddd;
  773. font-size: 0.8rem;
  774. cursor: pointer;
  775. }
  776. .flux_header .title {
  777. font-size: 0.9rem;
  778. }
  779. .flux .website .favicon {
  780. padding: 5px;
  781. }
  782. .flux .date {
  783. color: #666;
  784. font-size: 0.7rem;
  785. }
  786. .flux .bottom {
  787. font-size: 0.8rem;
  788. text-align: center;
  789. }
  790. /*=== Content of feed articles */
  791. .content {
  792. padding: 20px 10px;
  793. }
  794. .content > h1.title > a {
  795. color: #000;
  796. }
  797. .content hr {
  798. margin: 30px 10px;
  799. height: 1px;
  800. background: #ddd;
  801. border: 0;
  802. box-shadow: 0 2px 5px #ccc;
  803. }
  804. .content pre {
  805. margin: 10px auto;
  806. padding: 10px 20px;
  807. overflow: auto;
  808. background: #222;
  809. color: #fff;
  810. font-size: 0.9rem;
  811. border-radius: 3px;
  812. }
  813. .content code {
  814. padding: 2px 5px;
  815. color: #dd1144;
  816. background: #fafafa;
  817. border: 1px solid #eee;
  818. border-radius: 3px;
  819. }
  820. .content pre code {
  821. background: transparent;
  822. color: #fff;
  823. border: none;
  824. }
  825. .content blockquote {
  826. display: block;
  827. margin: 0;
  828. padding: 5px 20px;
  829. border-top: 1px solid #ddd;
  830. border-bottom: 1px solid #ddd;
  831. background: #fafafa;
  832. color: #333;
  833. }
  834. .content blockquote p {
  835. margin: 0;
  836. }
  837. /*=== Notification and actualize notification */
  838. .notification {
  839. padding: 0 0 0 5px;
  840. text-align: center;
  841. background:#222;
  842. border: none;
  843. border-radius: 0 0 12px 12px;
  844. 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;
  845. color:#fff;
  846. font-weight: bold;
  847. font-size: 0.9em;
  848. line-height: 3em;
  849. position:absolute;
  850. top:0;
  851. z-index: 10;
  852. vertical-align: middle;
  853. }
  854. .notification.good {
  855. color: #c95;
  856. }
  857. .notification.bad {
  858. background: #fdd;
  859. color: #844;
  860. }
  861. .notification a.close {
  862. padding: 0 15px;
  863. line-height: 3em;
  864. }
  865. .notification#actualizeProgress {
  866. line-height: 2em;
  867. }
  868. /*=== "Load more" part */
  869. #bigMarkAsRead {
  870. text-align: center;
  871. text-decoration: none;
  872. text-shadow: 0 -1px 0 #aaa;
  873. color: #666;
  874. background: #EDE7DE;
  875. }
  876. #bigMarkAsRead:hover {
  877. color: #000;
  878. background: #EDE7DE;
  879. background: radial-gradient(circle at 50% -25% , #ccc 0%, #EDE7DE 50%);
  880. }
  881. #bigMarkAsRead:hover .bigTick {
  882. text-shadow: 0 0 10px #666;
  883. }
  884. /*=== Navigation menu (for articles) */
  885. #nav_entries {
  886. background: linear-gradient(180deg, #222 0%, #171717 100%) #222;
  887. background: -webkit-linear-gradient(top, #222 0%, #171717 100%);
  888. border-top: 1px solid #171717;
  889. text-align: center;
  890. line-height: 3em;
  891. table-layout: fixed;
  892. box-shadow: 0 1px rgba(255,255,255,0.08) inset, 0 -2px 2px #171717;
  893. width:235px;
  894. }
  895. /*=== READER VIEW */
  896. /*================*/
  897. #stream.reader .flux {
  898. padding: 0 0 50px;
  899. border: none;
  900. background: #f0f0f0;
  901. color: #333;
  902. }
  903. #stream.reader .flux .author {
  904. margin: 0 0 10px;
  905. font-size: 90%;
  906. color: #666;
  907. }
  908. /*=== GLOBAL VIEW */
  909. /*================*/
  910. #stream.global {
  911. background: #222;
  912. padding: 24px 0;
  913. box-shadow: 0 1px #fff, 0 -2px 2px #171717 inset, 0 2px 2px #171717 inset;
  914. }
  915. .box.category .box-title {
  916. background: linear-gradient(0deg, #EDE7DE 0%, #fff 100%) #171717;
  917. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #fff 100%);
  918. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  919. border-radius: none;
  920. line-height: 2em;
  921. font-size: 1.2rem;
  922. text-shadow:0 1px #ccc;
  923. }
  924. .box.category .box-title .title {
  925. font-weight: normal;
  926. text-decoration: none;
  927. text-align: left;
  928. color: #888;
  929. }
  930. .box.category:not([data-unread="0"]) .box-title {
  931. }
  932. .box.category:not([data-unread="0"]) .box-title:active {
  933. }
  934. .box.category:not([data-unread="0"]) .box-title .title {
  935. color: #222;
  936. font-weight: bold;
  937. }
  938. .box.category .title:not([data-unread="0"]):after {
  939. position: absolute;
  940. top: 5px; right: 10px;
  941. border: 0;
  942. background: none;
  943. font-weight: bold;
  944. }
  945. .box.category .item.feed {
  946. padding: 2px 10px;
  947. font-size: 0.8rem;
  948. }
  949. .box.category .item.feed:not(.empty):not(.error) .item-title {
  950. color: #222;
  951. }
  952. /*=== PANEL */
  953. /*===========*/
  954. #panel {
  955. box-shadow: 0px 0px 4px #000;
  956. border-radius: 8px;
  957. }
  958. /*=== DIVERS */
  959. /*===========*/
  960. .aside.aside_feed .nav-form input,.aside.aside_feed .nav-form select {
  961. width: 130px;
  962. }
  963. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  964. right: -20px;
  965. }
  966. .aside.aside_feed .nav-form .dropdown .dropdown-menu:after {
  967. right: 33px;
  968. }
  969. /*=== STATISTICS */
  970. /*===============*/
  971. .stat {
  972. margin: 10px 0 20px;
  973. }
  974. .stat th,
  975. .stat td,
  976. .stat tr {
  977. border: none;
  978. }
  979. .stat > table td,
  980. .stat > table th {
  981. border-bottom: 1px solid #ccc;
  982. background: rgba(255,255,255,0.38);
  983. box-shadow: 0 1px #fff;
  984. }
  985. .stat > .horizontal-list {
  986. margin: 0 0 5px;
  987. }
  988. .stat > .horizontal-list .item {
  989. overflow: hidden;
  990. white-space: nowrap;
  991. text-overflow: ellipsis;
  992. }
  993. .stat > .horizontal-list .item:first-child {
  994. width: 250px;
  995. }
  996. /*=== LOGS */
  997. /*=========*/
  998. .logs {
  999. border: 1px solid #aaa;
  1000. border-radius: 5px;
  1001. overflow: hidden;
  1002. }
  1003. .log {
  1004. padding: 5px 10px;
  1005. background: #fafafa;
  1006. color: #333;
  1007. font-size: 0.8rem;
  1008. }
  1009. .log+.log {
  1010. border-top: 1px solid #aaa;
  1011. }
  1012. .log .date {
  1013. display: block;
  1014. font-weight: bold;
  1015. }
  1016. .log.error {
  1017. background: #fdd;
  1018. color: #844;
  1019. }
  1020. .log.warning {
  1021. background: #ffe;
  1022. color: #c95;
  1023. }
  1024. .log.notice {
  1025. background: #f4f4f4;
  1026. color: #aaa;
  1027. }
  1028. .log.debug {
  1029. background: #333;
  1030. color: #eee;
  1031. }
  1032. /*=== MOBILE */
  1033. /*===========*/
  1034. @media screen and (max-width: 840px) {
  1035. .header {
  1036. display: table;
  1037. }
  1038. .nav-login {
  1039. display: none;
  1040. }
  1041. .aside {
  1042. width: 0;
  1043. border-top: none;
  1044. box-shadow: 3px 0 3px #000;
  1045. transition: width 200ms linear;
  1046. -moz-transition: width 200ms linear;
  1047. -webkit-transition: width 200ms linear;
  1048. -o-transition: width 200ms linear;
  1049. -ms-transition: width 200ms linear;
  1050. }
  1051. .aside:target {
  1052. width: 235px;
  1053. }
  1054. .aside .toggle_aside,
  1055. #panel .close {
  1056. display: block;
  1057. width: 100%;
  1058. height: 40px;
  1059. line-height: 40px;
  1060. text-align: center;
  1061. background: #171717;
  1062. box-shadow: 0 1px rgba(255,255,255,0.08);
  1063. border-radius: 0 8px 0 8px;
  1064. }
  1065. .aside .btn-important {
  1066. display: inline-block;
  1067. margin: 20px 0 0;
  1068. }
  1069. .aside.aside_feed {
  1070. padding: 0;
  1071. }
  1072. .aside.aside_feed .tree {
  1073. position: static;
  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. }