flat.css 16 KB

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