screwdriver.css 25 KB

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