origine.css 19 KB

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