screwdriver.css 23 KB

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