4
0

flat.css 16 KB

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