pafat.css 16 KB

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