origine-compact.css 20 KB

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