screwdriver.css 23 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198
  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. .aside_feed .tree-folder-items > .item.empty > a {
  624. color: #e67e22;
  625. }
  626. .aside_feed .tree-folder-items > .item.error > a {
  627. color: #BD362F;
  628. }
  629. .aside_feed .tree-folder-items > .item:not([data-unread="0"]) {
  630. font-weight: bold;
  631. }
  632. .aside_feed .tree-folder-items .dropdown-menu:after {
  633. left: 2px;
  634. }
  635. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  636. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  637. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  638. border-radius: 3px;
  639. vertical-align: middle;
  640. }
  641. /*=== Configuration pages */
  642. .post {
  643. padding: 10px 50px;
  644. font-size: 0.9em;
  645. }
  646. .post form {
  647. margin: 10px 0;
  648. }
  649. .post.content {
  650. max-width: 550px;
  651. }
  652. /*=== Prompt (centered) */
  653. .prompt {
  654. text-align: center;
  655. color: #FFF;
  656. background: #222;
  657. padding: 14px 0px;
  658. box-shadow: 0px -1px #FFF, 0px 1px #FFF, 0px 2px 2px #171717 inset, 0px -2px 2px #171717 inset;
  659. text-shadow: 0 -1px #171717, 0 1px rgba(255,255,255,0.08);
  660. }
  661. .prompt label {
  662. text-align: left;
  663. }
  664. .prompt form {
  665. margin: 10px auto 20px auto;
  666. width: 180px;
  667. }
  668. .prompt input {
  669. margin: 5px auto;
  670. width: 100%;
  671. }
  672. .prompt p {
  673. margin: 20px 0;
  674. }
  675. .prompt input#username,.prompt input#passwordPlain{
  676. border:none;
  677. box-shadow: 0px 1px rgba(255, 255, 255, 0.08) inset,0 -1px #171717,0px 1px rgba(255, 255, 255, 0.08);
  678. background:#EDE7DE;
  679. }
  680. .prompt input#username:focus,.prompt input#passwordPlain:focus{
  681. border: solid 1px #E7AB34;
  682. box-shadow: 0 0 3px #E7AB34;
  683. }
  684. /*=== New article notification */
  685. #new-article {
  686. background: #0084CC;
  687. text-align: center;
  688. font-size: 0.9em;
  689. }
  690. #new-article:hover {
  691. background: #0066CC;
  692. }
  693. #new-article > a {
  694. line-height: 3em;
  695. color: #fff;
  696. font-weight: bold;
  697. }
  698. #new-article > a:hover {
  699. text-decoration: none;
  700. }
  701. /*=== Day indication */
  702. .day {
  703. padding: 0 10px;
  704. font-style:italic;
  705. line-height: 3em;
  706. background: #fff;
  707. text-align: center;
  708. }
  709. #new-article + .day {
  710. border-top: none;
  711. }
  712. .day .name {
  713. display: none;
  714. }
  715. /*=== Index menu */
  716. .nav_menu {
  717. background: #EDE7DE;
  718. border-bottom: 1px solid #ccc;
  719. box-shadow:0 -1px #fff inset;
  720. text-align: center;
  721. padding: 5px 0;
  722. }
  723. /*=== Feed articles */
  724. .flux_content {
  725. background: #FFF;
  726. border-radius: 10px;
  727. }
  728. .flux {
  729. background: #EDE7DE;
  730. }
  731. .flux:hover {
  732. background: #F9F7F4;
  733. }
  734. .flux:not(.current):hover .item.title {
  735. background: #F9F7F4;
  736. }
  737. .flux.current .flux .item.title a {
  738. text-shadow:0 0 2px #ccc;
  739. }
  740. .flux.not_read:not(.current):hover .item.title {
  741. opacity:0.85;
  742. }
  743. .flux.favorite {
  744. background: #FFF6DA;
  745. }
  746. .flux.favorite:not(.current):hover{
  747. background: #F9F7F4;
  748. }
  749. .flux.favorite:not(.current):hover .item.title {
  750. background: #F9F7F4;
  751. }
  752. .flux.current {
  753. background: linear-gradient(0deg, #EDE7DE 0%, #FFF 100%) #EDE7DE;
  754. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #FFF 100%);
  755. box-shadow: 0 -1px #fff inset, 0 2px #ccc;
  756. border-radius: 10px;
  757. margin: 3px 6px;
  758. }
  759. .flux .item.title {
  760. opacity: 0.35;
  761. }
  762. .flux.favorite .item.title {
  763. opacity: 1;
  764. }
  765. .flux.not_read .item.title {
  766. opacity: 1;
  767. }
  768. .flux.current .item.title a {
  769. color: #0f0f0f;
  770. }
  771. .flux .item.title a {
  772. color: #333;
  773. }
  774. .flux_header {
  775. border-top: 1px solid #ddd;
  776. font-size: 0.8rem;
  777. cursor: pointer;
  778. }
  779. .flux_header .title {
  780. font-size: 0.9rem;
  781. }
  782. .flux .website .favicon {
  783. padding: 5px;
  784. }
  785. .flux .date {
  786. color: #666;
  787. font-size: 0.7rem;
  788. }
  789. .flux .bottom {
  790. font-size: 0.8rem;
  791. text-align: center;
  792. }
  793. /*=== Content of feed articles */
  794. .content {
  795. padding: 20px 10px;
  796. }
  797. .content > h1.title > a {
  798. color: #000;
  799. }
  800. .content hr {
  801. margin: 30px 10px;
  802. height: 1px;
  803. background: #ddd;
  804. border: 0;
  805. box-shadow: 0 2px 5px #ccc;
  806. }
  807. .content pre {
  808. margin: 10px auto;
  809. padding: 10px 20px;
  810. overflow: auto;
  811. background: #222;
  812. color: #fff;
  813. font-size: 0.9rem;
  814. border-radius: 3px;
  815. }
  816. .content code {
  817. padding: 2px 5px;
  818. color: #dd1144;
  819. background: #fafafa;
  820. border: 1px solid #eee;
  821. border-radius: 3px;
  822. }
  823. .content pre code {
  824. background: transparent;
  825. color: #fff;
  826. border: none;
  827. }
  828. .content blockquote {
  829. display: block;
  830. margin: 0;
  831. padding: 5px 20px;
  832. border-top: 1px solid #ddd;
  833. border-bottom: 1px solid #ddd;
  834. background: #fafafa;
  835. color: #333;
  836. }
  837. .content blockquote p {
  838. margin: 0;
  839. }
  840. /*=== Notification and actualize notification */
  841. .notification {
  842. padding: 0 0 0 5px;
  843. text-align: center;
  844. background:#222;
  845. border: none;
  846. border-radius: 0 0 12px 12px;
  847. 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;
  848. color:#fff;
  849. font-weight: bold;
  850. font-size: 0.9em;
  851. line-height: 3em;
  852. position:absolute;
  853. top:0;
  854. z-index: 10;
  855. vertical-align: middle;
  856. }
  857. .notification.good {
  858. color: #c95;
  859. }
  860. .notification.bad {
  861. background: #fdd;
  862. color: #844;
  863. }
  864. .notification a.close {
  865. padding: 0 15px;
  866. line-height: 3em;
  867. }
  868. .notification#actualizeProgress {
  869. line-height: 2em;
  870. }
  871. /*=== "Load more" part */
  872. #bigMarkAsRead {
  873. text-align: center;
  874. text-decoration: none;
  875. text-shadow: 0 -1px 0 #aaa;
  876. color: #666;
  877. background: #EDE7DE;
  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. background: #222;
  915. padding: 24px 0;
  916. box-shadow: 0 1px #fff, 0 -2px 2px #171717 inset, 0 2px 2px #171717 inset;
  917. }
  918. .box.category .box-title {
  919. background: linear-gradient(0deg, #EDE7DE 0%, #fff 100%) #171717;
  920. background: -webkit-linear-gradient(bottom, #EDE7DE 0%, #fff 100%);
  921. box-shadow: 0px -1px #fff inset,0 -2px #ccc inset;
  922. border-radius: none;
  923. line-height: 2em;
  924. font-size: 1.2rem;
  925. text-shadow:0 1px #ccc;
  926. }
  927. .box.category .box-title .title {
  928. font-weight: normal;
  929. text-decoration: none;
  930. text-align: left;
  931. color: #888;
  932. }
  933. .box.category:not([data-unread="0"]) .box-title {
  934. }
  935. .box.category:not([data-unread="0"]) .box-title:active {
  936. }
  937. .box.category:not([data-unread="0"]) .box-title .title {
  938. color: #222;
  939. font-weight: bold;
  940. }
  941. .box.category .title:not([data-unread="0"]):after {
  942. position: absolute;
  943. top: 5px; right: 10px;
  944. border: 0;
  945. background: none;
  946. font-weight: bold;
  947. }
  948. .box.category .item.feed {
  949. padding: 2px 10px;
  950. font-size: 0.8rem;
  951. }
  952. .box.category .item.feed .item-title {
  953. color: #222;
  954. }
  955. /*=== PANEL */
  956. /*===========*/
  957. #panel {
  958. box-shadow: 0px 0px 4px #000;
  959. border-radius: 8px;
  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. /*=== MOBILE */
  1036. /*===========*/
  1037. @media screen and (max-width: 840px) {
  1038. .header {
  1039. display: table;
  1040. }
  1041. .nav-login {
  1042. display: none;
  1043. }
  1044. .aside {
  1045. width: 0;
  1046. border-top: none;
  1047. box-shadow: 3px 0 3px #000;
  1048. transition: width 200ms linear;
  1049. -moz-transition: width 200ms linear;
  1050. -webkit-transition: width 200ms linear;
  1051. -o-transition: width 200ms linear;
  1052. -ms-transition: width 200ms linear;
  1053. }
  1054. .aside:target {
  1055. width: 235px;
  1056. }
  1057. .aside .toggle_aside,
  1058. #panel .close {
  1059. display: block;
  1060. width: 100%;
  1061. height: 40px;
  1062. line-height: 40px;
  1063. text-align: center;
  1064. background: #171717;
  1065. box-shadow: 0 1px rgba(255,255,255,0.08);
  1066. border-radius: 0 8px 0 8px;
  1067. }
  1068. .aside .btn-important {
  1069. display: inline-block;
  1070. margin: 20px 0 0;
  1071. }
  1072. .aside.aside_feed {
  1073. padding: 0;
  1074. }
  1075. .aside.aside_feed .tree {
  1076. position: static;
  1077. }
  1078. .nav_menu .btn {
  1079. margin: 5px 10px;
  1080. }
  1081. .nav_menu .stick {
  1082. margin: 0 10px;
  1083. }
  1084. .nav_menu .stick .btn {
  1085. margin: 5px 0;
  1086. }
  1087. .nav_menu .search {
  1088. display: inline-block;
  1089. max-width: 97%;
  1090. }
  1091. .nav_menu .search input {
  1092. max-width: 97%;
  1093. width: 90px;
  1094. }
  1095. .nav_menu .search input:focus {
  1096. width: 400px;
  1097. }
  1098. .day .name {
  1099. display: none;
  1100. }
  1101. .pagination {
  1102. margin: 0 0 3.5em;
  1103. }
  1104. .notification a.close {
  1105. display: block;
  1106. left: 0;
  1107. background: transparent;
  1108. }
  1109. .notification a.close:hover {
  1110. opacity: 0.5;
  1111. }
  1112. .notification a.close .icon {
  1113. display: none;
  1114. }
  1115. .nav_menu .search {
  1116. display: none;
  1117. }
  1118. #nav_entries {
  1119. width: 100%;
  1120. }
  1121. }
  1122. @media (max-width: 700px) {
  1123. .header{
  1124. display: none;
  1125. }
  1126. .nav-login {
  1127. display: inline-block;
  1128. width: 100%;
  1129. }
  1130. .nav_menu .search {
  1131. display: inline-block;
  1132. }
  1133. .aside .btn-important {
  1134. display: none;
  1135. }
  1136. }