origine.css 16 KB

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