flat.rtl.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-right-color: #ddd;
  42. border-radius: 5px;
  43. min-height: 25px;
  44. line-height: 1;
  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-color: #e6ecedaa;
  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: 0 5px 5px 0;
  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: 5px 0 0 5px;
  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-right-width: 1px;
  146. border-right-style: solid;
  147. }
  148. .btn {
  149. margin: 0;
  150. padding: 0.25rem 0.5rem;
  151. background: #3498db;
  152. color: #fff;
  153. font-size: 0.9rem;
  154. border: none;
  155. border-bottom: 3px solid #2980b9;
  156. border-right-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-right-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-right-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: right;
  251. }
  252. .dropdown-menu::after {
  253. border-color: #95a5a6;
  254. left: 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: right;
  261. color: #34495e;
  262. }
  263. .dropdown-header a {
  264. position: absolute;
  265. left: 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-right: 2rem;
  278. }
  279. .dropdown-menu .dropdown-section .item:last-child {
  280. margin-bottom: 0.5rem;
  281. }
  282. .dropdown-menu .item > a:focus,
  283. .dropdown-menu .item > a:hover,
  284. .dropdown-menu .item > button:focus:not([disabled]),
  285. .dropdown-menu .item > button:hover:not([disabled]),
  286. .dropdown-menu .item > label:focus:not(.noHover),
  287. .dropdown-menu .item > label:hover:not(.noHover) {
  288. background: #2980b9;
  289. color: #fff;
  290. }
  291. .dropdown-menu > .item a:hover .icon,
  292. .nav-list.aside .item a:hover .icon {
  293. filter: brightness(3);
  294. }
  295. .dropdown-menu > .item[aria-checked="true"] > a::before {
  296. font-weight: bold;
  297. margin: 0 -14px 0 0;
  298. }
  299. .dropdown-menu .input select,
  300. .dropdown-menu .input input {
  301. margin: 0 auto 5px;
  302. padding: 2px 5px;
  303. border-radius: 3px;
  304. }
  305. .item ~ .dropdown-header,
  306. .dropdown-section ~ .dropdown-section,
  307. .item.separator {
  308. border-top-color: #ddd;
  309. }
  310. /*=== Alerts */
  311. .alert {
  312. background: #f4f4f4;
  313. color: #aaa;
  314. font-size: 0.9em;
  315. border: 1px solid #ccc;
  316. border-left: 1px solid #aaa;
  317. border-bottom: 1px solid #aaa;
  318. border-radius: 5px;
  319. text-shadow: 0 0 1px #eee;
  320. }
  321. .alert-head {
  322. font-size: 1.15em;
  323. }
  324. .alert > a {
  325. text-decoration: underline;
  326. color: inherit;
  327. }
  328. .alert-warn {
  329. background: #ffe;
  330. color: #c95;
  331. border: 1px solid #eeb;
  332. }
  333. .alert-success {
  334. background: #dfd;
  335. color: #484;
  336. border: 1px solid #cec;
  337. }
  338. .alert-error {
  339. background: #fdd;
  340. color: #844;
  341. border: 1px solid #ecc;
  342. }
  343. /*=== Pagination */
  344. .pagination {
  345. background: #ecf0f1;
  346. color: #000;
  347. }
  348. .pagination .item a {
  349. color: #000;
  350. }
  351. #load_more.loading,
  352. #load_more.loading:hover {
  353. background: url("loader.gif") center center no-repeat #34495e;
  354. }
  355. /*=== Boxes */
  356. .box {
  357. border: 1px solid #ddd;
  358. border-radius: 5px;
  359. }
  360. .box .box-title {
  361. background: #ecf0f1;
  362. color: #333;
  363. border-bottom: 1px solid #ddd;
  364. border-radius: 5px 5px 0 0;
  365. }
  366. .box .box-title .configure {
  367. margin-left: 4px;
  368. }
  369. .box .box-content {
  370. padding-right: 30px;
  371. max-height: 260px;
  372. }
  373. .box .box-content .item {
  374. font-size: 0.9rem;
  375. }
  376. .box .box-title .configure .icon,
  377. .box .box-content .item .configure .icon {
  378. vertical-align: middle;
  379. background-color: #95a5a6;
  380. border-radius: 3px;
  381. }
  382. /*=== Tree */
  383. .tree {
  384. margin: 10px 0;
  385. }
  386. .tree-folder-title {
  387. position: relative;
  388. padding: 0 10px;
  389. background: #34495e;
  390. line-height: 2.5rem;
  391. font-size: 1rem;
  392. }
  393. .tree-folder-title .title {
  394. background: inherit;
  395. color: #fff;
  396. }
  397. .tree-folder-title .title:hover {
  398. text-decoration: none;
  399. }
  400. .tree-folder.active .tree-folder-title {
  401. background: #2980b9;
  402. font-weight: bold;
  403. }
  404. .tree-folder-items {
  405. background: #2c3e50;
  406. }
  407. .tree-folder-items > .item {
  408. font-size: 0.8rem;
  409. }
  410. .tree-folder-items > .item.active {
  411. background: #2980b9;
  412. }
  413. .tree-folder-items > .item > a {
  414. text-decoration: none;
  415. color: #fff;
  416. }
  417. /*=== Scrollbar */
  418. @supports (scrollbar-width: thin) {
  419. #sidebar {
  420. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
  421. }
  422. #sidebar:hover {
  423. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
  424. }
  425. }
  426. @supports not (scrollbar-width: thin) {
  427. #sidebar::-webkit-scrollbar-thumb {
  428. background: rgba(255, 255, 255, 0.1);
  429. }
  430. #sidebar:hover::-webkit-scrollbar-thumb {
  431. background: rgba(255, 255, 255, 0.3);
  432. }
  433. }
  434. /*=== STRUCTURE */
  435. /*===============*/
  436. /*=== Header */
  437. .header {
  438. background: #ecf0f1;
  439. }
  440. .header > .item {
  441. vertical-align: middle;
  442. text-align: center;
  443. }
  444. .header > .item.title a:hover .logo {
  445. filter: brightness(1.5);
  446. }
  447. .header > .item.title h1 {
  448. margin: 0.5em 0;
  449. }
  450. .header > .item.title h1 a {
  451. text-decoration: none;
  452. }
  453. .header > .item.search input {
  454. width: 350px;
  455. }
  456. .aside {
  457. background: #ecf0f1;
  458. }
  459. .aside.aside_feed {
  460. padding: 10px 0;
  461. text-align: center;
  462. background: #34495e;
  463. border-radius: 10px 0 0 0;
  464. }
  465. .aside.aside_feed .tree {
  466. margin: 10px 0 50px;
  467. }
  468. .aside.aside_feed .icon {
  469. filter: brightness(3);
  470. }
  471. /*=== Aside main page (categories) */
  472. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  473. background-color: #2c3e50;
  474. }
  475. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  476. background-color: #34495e;
  477. }
  478. .aside .about {
  479. margin: 1rem;
  480. display: block;
  481. color: #ecf0f1;
  482. font-style: italic;
  483. }
  484. /*=== Aside main page (feeds) */
  485. .feed.item.empty.active {
  486. background: #f39c12;
  487. }
  488. .feed.item.error.active {
  489. background: #bd362f;
  490. }
  491. .feed.item.empty,
  492. .feed.item.empty > a {
  493. color: #e67e22;
  494. }
  495. .feed.item.error,
  496. .feed.item.error > a {
  497. color: #bd362f;
  498. }
  499. .feed.item.empty.active,
  500. .feed.item.error.active,
  501. .feed.item.empty.active > a,
  502. .feed.item.error.active > a {
  503. color: #fff;
  504. }
  505. .aside_feed .tree-folder-items .dropdown-menu::after {
  506. right: 2px;
  507. }
  508. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  509. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  510. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  511. border-radius: 3px;
  512. }
  513. /*=== Prompt (centered) */
  514. .prompt .form-group {
  515. margin-bottom: 1rem;
  516. }
  517. .prompt .form-group::after {
  518. display: none;
  519. }
  520. .prompt .form-group.form-group-actions {
  521. display: flex;
  522. margin-top: 2rem;
  523. align-items: center;
  524. justify-content: space-between;
  525. }
  526. .prompt .btn.btn-important {
  527. padding-right: 1.5rem;
  528. padding-left: 1.5rem;
  529. font-size: 1.1rem;
  530. }
  531. /*=== New article notification */
  532. #new-article {
  533. background: #3498db;
  534. font-size: 0.9em;
  535. text-align: center;
  536. }
  537. #new-article > a {
  538. line-height: 3em;
  539. font-weight: bold;
  540. color: #fff;
  541. }
  542. #new-article > a:hover {
  543. text-decoration: none;
  544. background: #2980b9;
  545. }
  546. /*=== Day indication */
  547. .day {
  548. padding: 0 10px;
  549. font-weight: bold;
  550. line-height: 3em;
  551. border-right: 2px solid #ecf0f1;
  552. }
  553. .day .name {
  554. padding: 0 0 0 10px;
  555. color: #aab;
  556. font-size: 1.8em;
  557. opacity: 0.3;
  558. font-style: italic;
  559. text-align: left;
  560. }
  561. /*=== Index menu */
  562. .nav_menu {
  563. text-align: center;
  564. padding: 5px 0;
  565. }
  566. .dropdown-menu .dropdown-header .icon {
  567. filter: invert(0.6);
  568. }
  569. .dropdown-menu .dropdown-header a:hover .icon {
  570. filter: invert(0.6) invert(77%) sepia(63%) saturate(4993%) hue-rotate(177deg) brightness(88%) contrast(96%);
  571. }
  572. /*=== Feed articles */
  573. .flux {
  574. border-right: 2px solid #ecf0f1;
  575. }
  576. .flux:not(.current):hover .flux_header .title,
  577. .flux .flux_header:hover {
  578. background: #fff;
  579. }
  580. .flux.current {
  581. background: #fff;
  582. border-right-color: #3498db;
  583. }
  584. .flux.not_read {
  585. border-right-color: #ff5300;
  586. }
  587. .flux.not_read:not(.current) {
  588. background: #fff3ed;
  589. }
  590. .flux.favorite {
  591. border-right-color: #ffc300;
  592. }
  593. .flux.favorite:not(.current) {
  594. background: #fff6da;
  595. }
  596. .flux_header {
  597. font-size: 0.8rem;
  598. cursor: pointer;
  599. border-top: 1px solid #ecf0f1;
  600. }
  601. .flux_header .title {
  602. font-size: 0.9rem;
  603. }
  604. .flux .flux_header .date,
  605. .flux .flux_content .bottom .date {
  606. color: #666;
  607. }
  608. .flux .bottom {
  609. font-size: 0.8rem;
  610. text-align: center;
  611. }
  612. /*=== Content of feed articles */
  613. .content {
  614. padding: 20px 10px;
  615. }
  616. .content > h1.title > a {
  617. color: #000;
  618. }
  619. .content hr {
  620. margin: 30px 10px;
  621. background: #ddd;
  622. height: 1px;
  623. border: 0;
  624. box-shadow: 0 2px 5px #ccc;
  625. }
  626. .content pre {
  627. background: #222;
  628. color: #fff;
  629. border-radius: 3px;
  630. }
  631. .content code {
  632. background: #fafafa;
  633. color: #d14;
  634. border-color: #eee;
  635. border-radius: 3px;
  636. }
  637. .content pre code {
  638. background: transparent;
  639. color: #fff;
  640. border: none;
  641. }
  642. .content blockquote {
  643. margin: 0;
  644. padding: 5px 20px;
  645. background: #fafafa;
  646. display: block;
  647. color: #333;
  648. border-top: 1px solid #ddd;
  649. border-bottom: 1px solid #ddd;
  650. }
  651. .content blockquote p {
  652. margin: 0;
  653. }
  654. /*=== Notification and actualize notification */
  655. .notification {
  656. background: #ddd;
  657. color: #666;
  658. font-size: 0.9em;
  659. border: none;
  660. border-radius: 3px;
  661. text-align: center;
  662. font-weight: bold;
  663. vertical-align: middle;
  664. }
  665. .notification.good {
  666. background: #1abc9c;
  667. color: #fff;
  668. }
  669. .notification.bad {
  670. background: #e74c3c;
  671. color: #fff;
  672. }
  673. .notification a {
  674. color: #000;
  675. }
  676. .notification .close {
  677. border-radius: 3px 0 0 3px;
  678. }
  679. .notification.good .close:hover {
  680. background: #16a085;
  681. }
  682. .notification .close .icon {
  683. filter: brightness(2.5);
  684. }
  685. .notification.bad .close:hover {
  686. background: #c0392b;
  687. }
  688. .notification .close:hover .icon {
  689. filter: brightness(4);
  690. }
  691. /*=== "Load more" part */
  692. #bigMarkAsRead.big {
  693. text-align: center;
  694. text-decoration: none;
  695. background: #ecf0f1;
  696. }
  697. #bigMarkAsRead:hover {
  698. background: #34495e;
  699. color: #fff;
  700. }
  701. /*=== Navigation menu (for articles) */
  702. #nav_entries {
  703. background: #34495e;
  704. }
  705. /*=== READER VIEW */
  706. /*================*/
  707. #stream.reader .flux {
  708. background: #fafafa;
  709. color: #34495e;
  710. border: none;
  711. }
  712. #stream.reader .flux .flux_content {
  713. background-color: #fff;
  714. border-color: #ecf0f1;
  715. }
  716. #stream.reader .flux .author {
  717. color: #999;
  718. }
  719. /*=== GLOBAL VIEW */
  720. /*================*/
  721. .box.category .box-title .title {
  722. font-weight: normal;
  723. text-decoration: none;
  724. text-align: right;
  725. }
  726. .box.category:not([data-unread="0"]) .box-title {
  727. background: #3498db;
  728. }
  729. .box.category:not([data-unread="0"]) .box-title:active {
  730. background: #2980b9;
  731. }
  732. .box.category:not([data-unread="0"]) .box-title .title {
  733. font-weight: bold;
  734. color: #fff;
  735. }
  736. .box.category .title:not([data-unread="0"])::after {
  737. background: none;
  738. border: 0;
  739. position: absolute;
  740. top: 5px; left: 10px;
  741. font-weight: bold;
  742. box-shadow: none;
  743. text-shadow: none;
  744. }
  745. /*=== DIVERS */
  746. /*===========*/
  747. .aside.aside_feed .nav-form input,
  748. .aside.aside_feed .nav-form select {
  749. width: 140px;
  750. }
  751. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  752. left: -20px;
  753. }
  754. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  755. left: 33px;
  756. }
  757. /*=== STATISTICS */
  758. /*===============*/
  759. .stat {
  760. margin: 10px 0 20px;
  761. }
  762. .stat th,
  763. .stat td,
  764. .stat tr {
  765. border: none;
  766. }
  767. .stat > table td,
  768. .stat > table th {
  769. border-bottom: 1px solid #ddd;
  770. }
  771. /*=== MOBILE */
  772. /*===========*/
  773. @media (max-width: 840px) {
  774. .form-group .group-name {
  775. padding-bottom: 0;
  776. }
  777. .aside {
  778. transition: width 200ms linear;
  779. }
  780. .aside .toggle_aside,
  781. #overlay .close,
  782. .dropdown-menu .toggle_aside {
  783. background: #2c3e50;
  784. }
  785. .aside.aside_feed {
  786. padding: 0;
  787. }
  788. .nav_menu .btn {
  789. margin: 5px 10px;
  790. padding: 3px 5px;
  791. min-height: 0;
  792. }
  793. .nav_menu .stick {
  794. margin: 0 10px;
  795. }
  796. .nav_menu .stick .btn {
  797. margin: 5px 0;
  798. }
  799. .nav_menu .search {
  800. display: inline-block;
  801. max-width: 97%;
  802. }
  803. .nav_menu .search input {
  804. padding: 3px 5px;
  805. max-width: 97%;
  806. width: 90px;
  807. }
  808. .nav_menu .search input:focus {
  809. width: 400px;
  810. }
  811. .dropdown-target:target ~ .dropdown-toggle::after {
  812. background-color: #fafafa;
  813. border-top: 1px solid #95a5a6;
  814. border-right: 1px solid #95a5a6;
  815. }
  816. .dropdown-target:target ~ .btn.dropdown-toggle::after {
  817. bottom: -19px;
  818. }
  819. .day .name {
  820. font-size: 1.1rem;
  821. }
  822. .notification {
  823. border-radius: 0;
  824. }
  825. .notification .close {
  826. background: transparent;
  827. display: block;
  828. right: 0;
  829. }
  830. .notification .close:hover {
  831. opacity: 0.5;
  832. }
  833. .notification .close .icon {
  834. display: none;
  835. }
  836. .post {
  837. padding-right: 15px;
  838. padding-left: 15px;
  839. }
  840. #close-slider.active {
  841. background: #2c3e50;
  842. }
  843. }