flat.rtl.css 16 KB

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