screwdriver.css 23 KB

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