pafat.css 16 KB

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