screwdriver.css 23 KB

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