pafat.css 16 KB

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