origine-compact.css 20 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087
  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", "PingFang SC", "Microsoft YaHei", 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: 3px 5px 2px 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: 8px 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: 32px;
  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: 20px;
  169. line-height: 20px;
  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. font-size: 0.9rem;
  309. }
  310. .horizontal-list .item {
  311. vertical-align: middle;
  312. line-height: 30px;
  313. }
  314. /*=== Dropdown */
  315. .dropdown-menu {
  316. margin: 5px 0 0;
  317. padding: 5px 0;
  318. border: 1px solid #ddd;
  319. border-radius: 5px;
  320. box-shadow: 3px 3px 3px #ddd;
  321. font-size: 0.8rem;
  322. text-align: left;
  323. }
  324. .dropdown-menu::after {
  325. content: "";
  326. position: absolute;
  327. top: -6px;
  328. right: 13px;
  329. width: 10px;
  330. height: 10px;
  331. background: #fff;
  332. border-top: 1px solid #ddd;
  333. border-left: 1px solid #ddd;
  334. z-index: -10;
  335. transform: rotate(45deg);
  336. -moz-transform: rotate(45deg);
  337. -webkit-transform: rotate(45deg);
  338. -ms-transform: rotate(45deg);
  339. }
  340. .dropdown-header {
  341. padding: 0 5px 5px;
  342. color: #888;
  343. font-weight: bold;
  344. text-align: left;
  345. }
  346. .dropdown-menu > .item > a,
  347. .dropdown-menu > .item > span,
  348. .dropdown-menu > .item > .as-link {
  349. padding: 0 22px;
  350. line-height: 2.5em;
  351. font-size: 0.8rem;
  352. }
  353. .dropdown-menu > .item:hover {
  354. background: #0062BE;
  355. color: #fff;
  356. }
  357. .dropdown-menu > .item[aria-checked="true"] > a::before {
  358. font-weight: bold;
  359. margin: 0 0 0 -14px;
  360. }
  361. .dropdown-menu > .item:hover > a {
  362. color: #fff;
  363. text-decoration: none;
  364. }
  365. .dropdown-menu .input select,
  366. .dropdown-menu .input input {
  367. margin: 0 auto 5px;
  368. padding: 2px 5px;
  369. border-radius: 3px;
  370. }
  371. .separator {
  372. margin: 5px 0;
  373. border-bottom: 1px solid #ddd;
  374. }
  375. /*=== Alerts */
  376. .alert {
  377. margin: 15px auto;
  378. padding: 10px 15px;
  379. background: #f4f4f4;
  380. border: 1px solid #ccc;
  381. border-right: 1px solid #aaa;
  382. border-bottom: 1px solid #aaa;
  383. border-radius: 5px;
  384. color: #aaa;
  385. text-shadow: 0 0 1px #eee;
  386. font-size: 0.9em;
  387. }
  388. .alert-head {
  389. font-size: 1.15em;
  390. }
  391. .alert > a {
  392. color: inherit;
  393. text-decoration: underline;
  394. }
  395. .alert-warn {
  396. background: #ffe;
  397. border: 1px solid #eeb;
  398. color: #c95;
  399. }
  400. .alert-success {
  401. background: #dfd;
  402. border: 1px solid #cec;
  403. color: #484;
  404. }
  405. .alert-error {
  406. background: #fdd;
  407. border: 1px solid #ecc;
  408. color: #844;
  409. }
  410. /*=== Pagination */
  411. .pagination {
  412. background: #fafafa;
  413. text-align: center;
  414. color: #333;
  415. font-size: 0.8em;
  416. }
  417. .content .pagination {
  418. margin: 0;
  419. padding: 0;
  420. }
  421. .pagination .item.pager-current {
  422. font-weight: bold;
  423. font-size: 1.5em;
  424. }
  425. .pagination .item a {
  426. display: block;
  427. color: #333;
  428. font-style: italic;
  429. line-height: 3em;
  430. text-decoration: none;
  431. }
  432. .pagination .item a:hover {
  433. background: #ddd;
  434. }
  435. .pagination:first-child .item {
  436. border-bottom: 1px solid #aaa;
  437. }
  438. .pagination:last-child .item {
  439. border-top: 1px solid #aaa;
  440. }
  441. .pagination .loading,
  442. .pagination a:hover.loading {
  443. background: url("loader.gif") center center no-repeat #fff;
  444. font-size: 0;
  445. }
  446. /*=== Boxes */
  447. .box {
  448. background: #fff;
  449. border-radius: 5px;
  450. box-shadow: 0 0 3px #bbb;
  451. }
  452. .box .box-title {
  453. margin: 0;
  454. padding: 5px 10px;
  455. background: #f6f6f6;
  456. border-bottom: 1px solid #ddd;
  457. border-radius: 5px 5px 0 0;
  458. }
  459. .box .box-content {
  460. min-height: 2.5em;
  461. max-height: 260px;
  462. }
  463. .box .box-content .item {
  464. padding: 0 10px;
  465. font-size: 0.9rem;
  466. line-height: 2.5em;
  467. }
  468. .box .box-content .item .configure {
  469. visibility: hidden;
  470. }
  471. .box .box-content .item:hover .configure {
  472. visibility: visible;
  473. }
  474. /*=== Tree */
  475. .tree {
  476. margin: 10px 0;
  477. }
  478. .tree-folder-title {
  479. position: relative;
  480. padding: 0 5px;
  481. background: #fff;
  482. line-height: 2rem;
  483. font-size: 0.9rem;
  484. }
  485. .tree-folder-title .title {
  486. background: inherit;
  487. color: #444;
  488. }
  489. .tree-folder-title .title:hover {
  490. text-decoration: none;
  491. }
  492. .tree-folder.active .tree-folder-title {
  493. background: #f0f0f0;
  494. font-weight: bold;
  495. }
  496. .tree-folder.active .tree-folder-title .title {
  497. color: #0062BE;
  498. }
  499. .tree-folder-items {
  500. border-top: 1px solid #ccc;
  501. border-bottom: 1px solid #ccc;
  502. background: #f6f6f6;
  503. }
  504. .tree-folder-items > .item {
  505. padding: 0 10px;
  506. line-height: 2.2rem;
  507. font-size: 0.8rem;
  508. }
  509. .tree-folder-items > .item.active {
  510. background: #0062be;
  511. }
  512. .tree-folder-items > .item > a {
  513. text-decoration: none;
  514. }
  515. .tree-folder-items > .item.active > a {
  516. color: #fff;
  517. }
  518. /*=== STRUCTURE */
  519. /*===============*/
  520. /*=== Header */
  521. .header {
  522. height: 40px;
  523. background: #f4f4f4;
  524. }
  525. .header > .item {
  526. padding: 0px;
  527. border-bottom: 1px solid #aaa;
  528. vertical-align: middle;
  529. text-align: center;
  530. }
  531. .header > .item.title{
  532. width: 230px;
  533. }
  534. .header > .item.title h1 {
  535. margin: 0;
  536. font-size: 1em;
  537. }
  538. .header > .item.title h1 a {
  539. text-decoration: none;
  540. }
  541. .header .item.configure .btn,
  542. .header .item.search .btn {
  543. min-height: 18px;
  544. padding: 4px 10px;
  545. line-height: 18px;
  546. }
  547. .header > .item.title .logo {
  548. height: 25px;
  549. width: 25px;
  550. }
  551. .header > .item.search input {
  552. width: 230px;
  553. padding: 1px 5px 0px 5px;
  554. }
  555. .header .item.search input:focus {
  556. width: 350px;
  557. }
  558. /*=== Body */
  559. #global {
  560. height: calc(100% - 85px);
  561. }
  562. .aside {
  563. border-right: 1px solid #aaa;
  564. background: #fff;
  565. }
  566. .aside.aside_feed {
  567. padding: 10px 0;
  568. text-align: center;
  569. background: #fff;
  570. }
  571. .aside.aside_feed .tree {
  572. margin: 10px 0 50px;
  573. }
  574. /*=== Aside main page (categories) */
  575. .aside_feed .category .title:not([data-unread="0"])::after {
  576. position: absolute;
  577. right: 0;
  578. margin: 10px 0;
  579. padding: 0 10px;
  580. font-size: 0.8rem;
  581. line-height: 0.9rem;
  582. background: inherit;
  583. }
  584. /*=== Aside main page (feeds) */
  585. .feed.item.empty.active {
  586. background: #e67e22;
  587. }
  588. .feed.item.error.active {
  589. background: #bd362f;
  590. }
  591. .feed.item.empty,
  592. .feed.item.empty > a {
  593. color: #e67e22;
  594. }
  595. .feed.item.error,
  596. .feed.item.error > a {
  597. color: #bd362f;
  598. }
  599. .feed.item.empty.active,
  600. .feed.item.error.active,
  601. .feed.item.empty.active > a,
  602. .feed.item.error.active > a {
  603. color: #fff;
  604. }
  605. .aside_feed .tree-folder-items .dropdown-menu::after {
  606. left: 2px;
  607. }
  608. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  609. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  610. background-color: #fff;
  611. border-radius: 3px;
  612. }
  613. /*=== Configuration pages */
  614. .post {
  615. padding: 10px 50px;
  616. font-size: 0.9em;
  617. }
  618. .post form {
  619. margin: 10px 0;
  620. }
  621. .post.content {
  622. max-width: 550px;
  623. }
  624. /*=== Prompt (centered) */
  625. .prompt {
  626. text-align: center;
  627. }
  628. .prompt label {
  629. text-align: left;
  630. }
  631. .prompt form {
  632. margin: 10px auto 20px auto;
  633. width: 200px;
  634. }
  635. .prompt input {
  636. margin: 5px auto;
  637. width: 100%;
  638. }
  639. .prompt p {
  640. margin: 20px 0;
  641. }
  642. /*=== New article notification */
  643. #new-article {
  644. background: #0084CC;
  645. text-align: center;
  646. font-size: 0.9em;
  647. }
  648. #new-article:hover {
  649. background: #0066CC;
  650. }
  651. #new-article > a {
  652. line-height: 3em;
  653. color: #fff;
  654. font-weight: bold;
  655. }
  656. #new-article > a:hover {
  657. text-decoration: none;
  658. }
  659. /*=== Day indication */
  660. .day {
  661. font-size: 0.9rem;
  662. padding: 0 10px;
  663. font-weight: bold;
  664. line-height: 2em;
  665. background: #fff;
  666. border-top: 1px solid #aaa;
  667. border-bottom: 1px solid #aaa;
  668. }
  669. #new-article + .day {
  670. border-top: none;
  671. }
  672. .day .name {
  673. padding: 0 10px 0 0;
  674. color: #aab;
  675. font-size: 1em;
  676. opacity: 0.6;
  677. font-style: italic;
  678. text-align: right;
  679. }
  680. /*=== Index menu */
  681. .nav_menu {
  682. background: #fafafa;
  683. border-bottom: 1px solid #aaa;
  684. text-align: center;
  685. padding: 5px 0;
  686. }
  687. /*=== Feed articles */
  688. .flux {
  689. border-left: 2px solid #aaa;
  690. background: #fafafa;
  691. }
  692. .flux:hover {
  693. background: #fff;
  694. }
  695. .flux.current {
  696. border-left: 2px solid #0062BE;
  697. }
  698. .flux.not_read {
  699. border-left: 2px solid #FF5300;
  700. background: #FFF3ED;
  701. }
  702. .flux.not_read:not(.current):hover .item.title {
  703. background: #FFF3ED;
  704. }
  705. .flux.favorite {
  706. border-left: 2px solid #FFC300;
  707. background: #FFF6DA;
  708. }
  709. .flux.favorite:not(.current):hover .item.title {
  710. background: #FFF6DA;
  711. }
  712. .flux.current {
  713. background: #fff;
  714. }
  715. .flux_header {
  716. border-top: 1px solid #ddd;
  717. font-size: 0.8rem;
  718. cursor: pointer;
  719. }
  720. .flux_header .title {
  721. font-size: 0.8rem;
  722. }
  723. .flux .website .favicon {
  724. padding: 5px;
  725. }
  726. .flux .date {
  727. color: #666;
  728. font-size: 0.7rem;
  729. }
  730. .flux .bottom {
  731. font-size: 0.8rem;
  732. text-align: center;
  733. }
  734. /*=== Content of feed articles */
  735. .content {
  736. padding: 10px 10px;
  737. }
  738. #stream.normal .content > h1.title {
  739. display:none;
  740. }
  741. .content > h1.title > a {
  742. color: #000;
  743. }
  744. .content hr {
  745. margin: 30px 10px;
  746. height: 1px;
  747. background: #ddd;
  748. border: 0;
  749. box-shadow: 0 2px 5px #ccc;
  750. }
  751. .content pre {
  752. margin: 10px auto;
  753. padding: 10px 20px;
  754. overflow: auto;
  755. background: #222;
  756. color: #fff;
  757. font-size: 0.9rem;
  758. border-radius: 3px;
  759. }
  760. .content code {
  761. padding: 2px 5px;
  762. color: #dd1144;
  763. background: #fafafa;
  764. border: 1px solid #eee;
  765. border-radius: 3px;
  766. }
  767. .content pre code {
  768. background: transparent;
  769. color: #fff;
  770. border: none;
  771. }
  772. .content blockquote {
  773. display: block;
  774. margin: 0;
  775. padding: 5px 20px;
  776. border-top: 1px solid #ddd;
  777. border-bottom: 1px solid #ddd;
  778. background: #fafafa;
  779. color: #333;
  780. }
  781. .content blockquote p {
  782. margin: 0;
  783. }
  784. /*=== Notification and actualize notification */
  785. .notification {
  786. padding: 0 0 0 5px;
  787. text-align: center;
  788. border: 1px solid #eeb;
  789. border-radius: 3px;
  790. box-shadow: 0 0 5px #ddd;
  791. font-weight: bold;
  792. font-size: 0.9em;
  793. line-height: 3em;
  794. z-index: 10;
  795. vertical-align: middle;
  796. }
  797. .notification.good {
  798. background: #ffe;
  799. border: 1px solid #eeb;
  800. color: #c95;
  801. }
  802. .notification.bad {
  803. background: #fdd;
  804. border: 1px solid #ecc;
  805. color: #844;
  806. }
  807. .notification a.close {
  808. padding: 0 15px;
  809. line-height: 3em;
  810. }
  811. .notification.good a.close:hover {
  812. background: #eeb;
  813. }
  814. .notification.bad a.close:hover {
  815. background: #ecc;
  816. }
  817. .notification#actualizeProgress {
  818. line-height: 2em;
  819. }
  820. /*=== "Load more" part */
  821. #bigMarkAsRead {
  822. text-align: center;
  823. text-decoration: none;
  824. color: #666;
  825. background: #fafafa;
  826. font-size: 1.2em;
  827. }
  828. #bigMarkAsRead:hover {
  829. color: #0062be;
  830. background: #fff;
  831. box-shadow: 0 -5px 10px #eee inset;
  832. }
  833. #bigMarkAsRead .bigTick {
  834. font-size: 3em;
  835. }
  836. #bigMarkAsRead:hover .bigTick {
  837. text-shadow: 0 0 5px #0062be;
  838. }
  839. /*=== Navigation menu (for articles) */
  840. #nav_entries {
  841. margin: 0;
  842. background: #fff;
  843. border-top: 1px solid #ddd;
  844. text-align: center;
  845. line-height: 2.2em;
  846. table-layout: fixed;
  847. }
  848. /*=== READER VIEW */
  849. /*================*/
  850. #stream.reader .flux {
  851. padding: 0 0 50px;
  852. border: none;
  853. background: #f0f0f0;
  854. color: #333;
  855. }
  856. #stream.reader .flux .author {
  857. margin: 0 0 10px;
  858. font-size: 90%;
  859. color: #666;
  860. }
  861. /*=== GLOBAL VIEW */
  862. /*================*/
  863. .box.category .box-title .title {
  864. font-weight: normal;
  865. text-decoration: none;
  866. text-align: left;
  867. }
  868. .box.category:not([data-unread="0"]) .box-title {
  869. background: #0084CC;
  870. }
  871. .box.category:not([data-unread="0"]) .box-title:active {
  872. background: #3498db;
  873. }
  874. .box.category:not([data-unread="0"]) .box-title .title {
  875. color: #fff;
  876. font-weight: bold;
  877. }
  878. .box.category .title:not([data-unread="0"])::after {
  879. position: absolute;
  880. top: 5px; right: 10px;
  881. border: 0;
  882. background: none;
  883. color: #fff;
  884. font-weight: bold;
  885. box-shadow: none;
  886. text-shadow: none;
  887. }
  888. .box.category .item.feed {
  889. padding: 2px 10px;
  890. font-size: 0.8rem;
  891. }
  892. /*=== DIVERS */
  893. /*===========*/
  894. .aside.aside_feed .nav-form input,
  895. .aside.aside_feed .nav-form select {
  896. width: 140px;
  897. }
  898. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  899. right: -20px;
  900. }
  901. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  902. right: 33px;
  903. }
  904. /*=== STATISTICS */
  905. /*===============*/
  906. .stat {
  907. margin: 10px 0 20px;
  908. }
  909. .stat th,
  910. .stat td,
  911. .stat tr {
  912. border: none;
  913. }
  914. .stat > table td,
  915. .stat > table th {
  916. border-bottom: 1px solid #ddd;
  917. }
  918. .stat > .horizontal-list {
  919. margin: 0 0 5px;
  920. }
  921. .stat > .horizontal-list .item {
  922. overflow: hidden;
  923. white-space: nowrap;
  924. text-overflow: ellipsis;
  925. }
  926. .stat > .horizontal-list .item:first-child {
  927. width: 270px;
  928. }
  929. /*=== LOGS */
  930. /*=========*/
  931. .loglist {
  932. border: 1px solid #aaa;
  933. border-radius: 5px;
  934. overflow: hidden;
  935. }
  936. .log {
  937. padding: 5px 10px;
  938. background: #fafafa;
  939. color: #333;
  940. font-size: 0.8rem;
  941. }
  942. .log+.log {
  943. border-top: 1px solid #aaa;
  944. }
  945. .log .date {
  946. display: block;
  947. font-weight: bold;
  948. }
  949. .log.error {
  950. background: #fdd;
  951. color: #844;
  952. }
  953. .log.warning {
  954. background: #ffe;
  955. color: #c95;
  956. }
  957. .log.notice {
  958. background: #f4f4f4;
  959. color: #aaa;
  960. }
  961. .log.debug {
  962. background: #333;
  963. color: #eee;
  964. }
  965. /*=== MOBILE */
  966. /*===========*/
  967. @media(max-width: 840px) {
  968. .aside {
  969. box-shadow: 3px 0 3px #aaa;
  970. transition: width 200ms linear;
  971. -moz-transition: width 200ms linear;
  972. -webkit-transition: width 200ms linear;
  973. -o-transition: width 200ms linear;
  974. -ms-transition: width 200ms linear;
  975. }
  976. .aside .toggle_aside,
  977. #panel .close {
  978. display: block;
  979. width: 100%;
  980. height: 50px;
  981. line-height: 50px;
  982. text-align: center;
  983. background: #f6f6f6;
  984. border-bottom: 1px solid #ddd;
  985. }
  986. .aside.aside_feed {
  987. padding: 0;
  988. }
  989. .nav_menu .btn {
  990. margin: 5px 10px;
  991. }
  992. .nav_menu .stick {
  993. margin: 0 10px;
  994. }
  995. .nav_menu .stick .btn {
  996. margin: 5px 0;
  997. }
  998. .nav_menu .search {
  999. display: inline-block;
  1000. max-width: 97%;
  1001. }
  1002. .nav_menu .search input {
  1003. max-width: 97%;
  1004. width: 90px;
  1005. }
  1006. .nav_menu .search input:focus {
  1007. width: 400px;
  1008. }
  1009. .day .name {
  1010. font-size: 1.1rem;
  1011. text-shadow: none;
  1012. }
  1013. .pagination {
  1014. margin: 0 0 3.5em;
  1015. }
  1016. .notification a.close {
  1017. display: block;
  1018. left: 0;
  1019. background: transparent;
  1020. }
  1021. .notification a.close:hover {
  1022. opacity: 0.5;
  1023. }
  1024. .notification a.close .icon {
  1025. display: none;
  1026. }
  1027. }