screwdriver.css 22 KB

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