flat.css 16 KB

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