origine-compact.css 20 KB

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