screwdriver.css 23 KB

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