origine-compact.css 20 KB

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