screwdriver.css 23 KB

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