origine.rtl.css 18 KB

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