origine-compact.css 20 KB

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