flat.css 16 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042
  1. @charset "UTF-8";
  2. /*=== GENERAL */
  3. /*============*/
  4. html, body {
  5. background: #fafafa;
  6. color: black;
  7. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  8. }
  9. /*=== Links */
  10. a, button.as-link {
  11. color: #2980b9;
  12. outline: none;
  13. }
  14. /*=== Forms */
  15. legend {
  16. margin: 20px 0 5px;
  17. padding: 5px 20px;
  18. background: #ecf0f1;
  19. display: inline-block;
  20. width: auto;
  21. font-size: 1.4em;
  22. border-radius: 20px;
  23. clear: both;
  24. }
  25. label {
  26. min-height: 25px;
  27. padding: 5px 0;
  28. cursor: pointer;
  29. color: #444;
  30. }
  31. textarea {
  32. width: 360px;
  33. height: 100px;
  34. }
  35. input, select, textarea {
  36. padding: 5px;
  37. background: #fff;
  38. color: #666;
  39. border: none;
  40. border-bottom: 3px solid #ddd;
  41. border-left-color: #ddd;
  42. border-radius: 5px;
  43. min-height: 25px;
  44. line-height: 25px;
  45. vertical-align: middle;
  46. }
  47. option {
  48. padding: 0 .5em;
  49. }
  50. input:focus, select:focus, textarea:focus {
  51. color: #333;
  52. border-color: #2980b9;
  53. }
  54. input:invalid, select:invalid {
  55. color: #f00;
  56. border-color: #f00;
  57. box-shadow: none;
  58. }
  59. input:disabled, select:disabled {
  60. background: #eee;
  61. }
  62. /*=== Tables */
  63. table {
  64. border-collapse: collapse;
  65. }
  66. th, td {
  67. border: 1px solid #ddd;
  68. }
  69. th {
  70. background: #f6f6f6;
  71. }
  72. form td,
  73. form 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. border-radius: 0;
  118. }
  119. .stick .btn:first-child,
  120. .stick input:first-child {
  121. border-radius: 5px 0 0 5px;
  122. }
  123. .stick .btn:last-child,
  124. .stick input:last-child,
  125. .stick .dropdown:last-child > .btn {
  126. border-radius: 0 5px 5px 0;
  127. }
  128. .stick .btn + .btn,
  129. .stick .btn + input,
  130. .stick .btn + .dropdown > .btn,
  131. .stick input + .btn,
  132. .stick input + input,
  133. .stick input + .dropdown > .btn,
  134. .stick .dropdown + .btn,
  135. .stick .dropdown + input,
  136. .stick .dropdown + .dropdown > .btn {
  137. border-left-width: 1px;
  138. border-left-style: solid;
  139. }
  140. .btn {
  141. margin: 0;
  142. padding: 5px 10px;
  143. background: #3498db;
  144. display: inline-block;
  145. color: #fff;
  146. font-size: 0.9rem;
  147. border: none;
  148. border-bottom: 3px solid #2980b9;
  149. border-left-color: #2980b9;
  150. border-radius: 5px;
  151. min-height: 38px;
  152. min-width: 15px;
  153. line-height: 25px;
  154. vertical-align: middle;
  155. cursor: pointer;
  156. overflow: hidden;
  157. }
  158. a.btn {
  159. min-height: 25px;
  160. line-height: 25px;
  161. }
  162. .btn:hover {
  163. text-decoration: none;
  164. }
  165. .btn.active,
  166. .btn:active,
  167. .btn:hover,
  168. .dropdown-target:target ~ .btn.dropdown-toggle {
  169. background: #2980b9;
  170. }
  171. .btn .icon {
  172. filter: brightness(5);
  173. }
  174. #toggle-unread .icon,
  175. #toggle-starred .icon {
  176. filter: none;
  177. }
  178. .btn-important {
  179. font-weight: normal;
  180. background: #e67e22;
  181. color: #fff;
  182. border-bottom: 3px solid #d35400;
  183. border-left-color: #d35400;
  184. }
  185. .btn-important:hover,
  186. .btn-important:active {
  187. background: #d35400;
  188. }
  189. .btn-important .icon {
  190. filter: brightness(3);
  191. }
  192. .btn-attention {
  193. background: #e74c3c;
  194. color: #fff;
  195. border-bottom: 3px solid #c0392b;
  196. border-left-color: #c0392b;
  197. }
  198. .btn-attention:hover,
  199. .btn-attention:active {
  200. background: #c0392b;
  201. }
  202. .switch.active {
  203. background-color: #2980b9;
  204. }
  205. .switch.active:hover {
  206. background-image: url('./icons/disabled-light.svg');
  207. }
  208. /*=== Navigation */
  209. .nav-list {
  210. font-size: 0.9rem;
  211. }
  212. .nav-list .item,
  213. .nav-list .item.nav-header {
  214. min-height: 2.5em;
  215. line-height: 2.5;
  216. }
  217. .nav-list .item a:hover,
  218. .nav-list .item.active {
  219. background: #2980b9;
  220. color: #fff;
  221. }
  222. .nav-list .item.active a {
  223. color: #fff;
  224. }
  225. .nav-list .item > a {
  226. padding: 0 1rem;
  227. }
  228. .nav-list a:hover {
  229. text-decoration: none;
  230. }
  231. .nav-list .nav-header {
  232. padding: 0 1rem;
  233. font-weight: bold;
  234. background: #34495e;
  235. color: #fff;
  236. }
  237. .nav-list .nav-form {
  238. padding: 3px;
  239. text-align: center;
  240. }
  241. /*=== Dropdown */
  242. .dropdown-menu {
  243. margin: 0.5rem 0 0;
  244. padding: 0.5rem 0 0.25rem 0;
  245. background: #fafafa;
  246. font-size: 0.8rem;
  247. border: 1px solid #95a5a6;
  248. border-radius: 3px;
  249. text-align: left;
  250. }
  251. .dropdown-menu::after {
  252. border-color: #95a5a6;
  253. right: 12px;
  254. }
  255. .dropdown-header,
  256. .dropdown-section .dropdown-section-title {
  257. padding: 0 0.5rem 0.5rem;
  258. font-weight: bold;
  259. text-align: left;
  260. color: #34495e;
  261. }
  262. .dropdown-header a {
  263. position: absolute;
  264. right: 0.5rem;
  265. }
  266. .dropdown-menu .item > a,
  267. .dropdown-menu .item > span,
  268. .dropdown-menu .item > .as-link {
  269. padding: 0 22px;
  270. line-height: 2.5em;
  271. font-size: inherit;
  272. }
  273. .dropdown-menu .dropdown-section .item > a,
  274. .dropdown-menu .dropdown-section .item > span,
  275. .dropdown-menu .dropdown-section .item > .as-link {
  276. padding-left: 2rem;
  277. }
  278. .dropdown-menu .dropdown-section .item:last-child {
  279. margin-bottom: 0.5rem;
  280. }
  281. .dropdown-menu .item > a:hover,
  282. .dropdown-menu .item > button:hover:not([disabled]),
  283. .dropdown-menu .item > label:hover:not(.noHover) {
  284. background: #2980b9;
  285. color: #fff;
  286. }
  287. .dropdown-menu > .item a:hover .icon,
  288. .nav-list.aside .item a:hover .icon {
  289. filter: brightness(3);
  290. }
  291. .dropdown-menu > .item[aria-checked="true"] > a::before {
  292. font-weight: bold;
  293. margin: 0 0 0 -14px;
  294. }
  295. .dropdown-menu .input select,
  296. .dropdown-menu .input input {
  297. margin: 0 auto 5px;
  298. padding: 2px 5px;
  299. border-radius: 3px;
  300. }
  301. .item ~ .dropdown-header,
  302. .dropdown-section ~ .dropdown-section,
  303. .item.separator {
  304. border-top-color: #ddd;
  305. }
  306. /*=== Alerts */
  307. .alert {
  308. background: #f4f4f4;
  309. color: #aaa;
  310. font-size: 0.9em;
  311. border: 1px solid #ccc;
  312. border-right: 1px solid #aaa;
  313. border-bottom: 1px solid #aaa;
  314. border-radius: 5px;
  315. text-shadow: 0 0 1px #eee;
  316. }
  317. .alert-head {
  318. font-size: 1.15em;
  319. }
  320. .alert > a {
  321. text-decoration: underline;
  322. color: inherit;
  323. }
  324. .alert-warn {
  325. background: #ffe;
  326. color: #c95;
  327. border: 1px solid #eeb;
  328. }
  329. .alert-success {
  330. background: #dfd;
  331. color: #484;
  332. border: 1px solid #cec;
  333. }
  334. .alert-error {
  335. background: #fdd;
  336. color: #844;
  337. border: 1px solid #ecc;
  338. }
  339. /*=== Pagination */
  340. .pagination {
  341. background: #ecf0f1;
  342. color: #000;
  343. }
  344. .pagination .item a {
  345. color: #000;
  346. }
  347. #load_more.loading,
  348. #load_more.loading:hover {
  349. background: url("loader.gif") center center no-repeat #34495e;
  350. }
  351. /*=== Boxes */
  352. .box {
  353. border: 1px solid #ddd;
  354. border-radius: 5px;
  355. }
  356. .box .box-title {
  357. margin: 0;
  358. padding: 5px 10px;
  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-right: 4px;
  366. }
  367. .box .box-content {
  368. padding-left: 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: 0 10px 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. left: 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. /*=== Configuration pages */
  512. .post {
  513. padding: 10px 50px;
  514. font-size: 0.9em;
  515. }
  516. .post form {
  517. margin: 10px 0;
  518. }
  519. .post.content {
  520. max-width: 550px;
  521. }
  522. /*=== Prompt (centered) */
  523. .prompt .form-group {
  524. margin-bottom: 1rem;
  525. }
  526. .prompt .form-group::after {
  527. display: none;
  528. }
  529. .prompt .form-group.form-group-actions {
  530. display: flex;
  531. margin-top: 2rem;
  532. align-items: center;
  533. justify-content: space-between;
  534. }
  535. .prompt .btn.btn-important {
  536. padding-left: 1.5rem;
  537. padding-right: 1.5rem;
  538. font-size: 1.1rem;
  539. }
  540. /*=== New article notification */
  541. #new-article {
  542. background: #3498db;
  543. font-size: 0.9em;
  544. text-align: center;
  545. }
  546. #new-article > a {
  547. line-height: 3em;
  548. font-weight: bold;
  549. color: #fff;
  550. }
  551. #new-article > a:hover {
  552. text-decoration: none;
  553. background: #2980b9;
  554. }
  555. /*=== Day indication */
  556. .day {
  557. padding: 0 10px;
  558. font-weight: bold;
  559. line-height: 3em;
  560. border-left: 2px solid #ecf0f1;
  561. }
  562. .day .name {
  563. padding: 0 10px 0 0;
  564. color: #aab;
  565. font-size: 1.8em;
  566. opacity: 0.3;
  567. font-style: italic;
  568. text-align: right;
  569. }
  570. /*=== Index menu */
  571. .nav_menu {
  572. text-align: center;
  573. padding: 5px 0;
  574. }
  575. .dropdown-menu .dropdown-header .icon {
  576. filter: invert(0.6);
  577. }
  578. .dropdown-menu .dropdown-header a:hover .icon {
  579. filter: invert(0.6) invert(77%) sepia(63%) saturate(4993%) hue-rotate(177deg) brightness(88%) contrast(96%);
  580. }
  581. /*=== Feed articles */
  582. .flux {
  583. border-left: 2px solid #ecf0f1;
  584. }
  585. .flux .flux_header:hover {
  586. background: #fff;
  587. }
  588. .flux.current {
  589. background: #fff;
  590. border-left-color: #3498db;
  591. }
  592. .flux.not_read {
  593. border-left-color: #ff5300;
  594. }
  595. .flux.not_read:not(.current) {
  596. background: #fff3ed;
  597. }
  598. .flux.favorite {
  599. border-left-color: #ffc300;
  600. }
  601. .flux.favorite:not(.current) {
  602. background: #fff6da;
  603. }
  604. .flux_header {
  605. font-size: 0.8rem;
  606. cursor: pointer;
  607. border-top: 1px solid #ecf0f1;
  608. }
  609. .flux_header .title {
  610. font-size: 0.9rem;
  611. }
  612. .flux .item.date {
  613. color: #666;
  614. font-size: 0.7rem;
  615. }
  616. .flux .bottom {
  617. font-size: 0.8rem;
  618. text-align: center;
  619. }
  620. /*=== Content of feed articles */
  621. .content {
  622. padding: 20px 10px;
  623. }
  624. .content > h1.title > a {
  625. color: #000;
  626. }
  627. .content hr {
  628. margin: 30px 10px;
  629. background: #ddd;
  630. height: 1px;
  631. border: 0;
  632. box-shadow: 0 2px 5px #ccc;
  633. }
  634. .content pre {
  635. margin: 10px auto;
  636. padding: 10px 20px;
  637. overflow: auto;
  638. background: #222;
  639. color: #fff;
  640. font-size: 0.9rem;
  641. border-radius: 3px;
  642. }
  643. .content code {
  644. padding: 2px 5px;
  645. background: #fafafa;
  646. color: #d14;
  647. border: 1px solid #eee;
  648. border-radius: 3px;
  649. }
  650. .content pre code {
  651. background: transparent;
  652. color: #fff;
  653. border: none;
  654. }
  655. .content blockquote {
  656. margin: 0;
  657. padding: 5px 20px;
  658. background: #fafafa;
  659. display: block;
  660. color: #333;
  661. border-top: 1px solid #ddd;
  662. border-bottom: 1px solid #ddd;
  663. }
  664. .content blockquote p {
  665. margin: 0;
  666. }
  667. /*=== Notification and actualize notification */
  668. .notification {
  669. background: #ddd;
  670. color: #666;
  671. font-size: 0.9em;
  672. border: none;
  673. border-radius: 3px;
  674. text-align: center;
  675. font-weight: bold;
  676. vertical-align: middle;
  677. }
  678. .notification.good {
  679. background: #1abc9c;
  680. color: #fff;
  681. }
  682. .notification.bad {
  683. background: #e74c3c;
  684. color: #fff;
  685. }
  686. .notification a {
  687. color: #000;
  688. }
  689. .notification a.close {
  690. border-radius: 0 3px 3px 0;
  691. }
  692. .notification.good a.close:hover {
  693. background: #16a085;
  694. }
  695. .notification.bad a.close:hover {
  696. background: #c0392b;
  697. }
  698. /*=== "Load more" part */
  699. #bigMarkAsRead {
  700. text-align: center;
  701. text-decoration: none;
  702. background: #ecf0f1;
  703. }
  704. #bigMarkAsRead:hover {
  705. background: #34495e;
  706. color: #fff;
  707. }
  708. /*=== Navigation menu (for articles) */
  709. #nav_entries {
  710. margin: 0;
  711. text-align: center;
  712. line-height: 3em;
  713. table-layout: fixed;
  714. background: #34495e;
  715. }
  716. /*=== READER VIEW */
  717. /*================*/
  718. #stream.reader .flux {
  719. background: #fafafa;
  720. color: #34495e;
  721. border: none;
  722. }
  723. #stream.reader .flux .content {
  724. background-color: #fff;
  725. border-color: #ecf0f1;
  726. }
  727. #stream.reader .flux .author {
  728. margin: 0 0 10px;
  729. color: #999;
  730. font-size: 90%;
  731. }
  732. /*=== GLOBAL VIEW */
  733. /*================*/
  734. .box.category .box-title .title {
  735. font-weight: normal;
  736. text-decoration: none;
  737. text-align: left;
  738. }
  739. .box.category:not([data-unread="0"]) .box-title {
  740. background: #3498db;
  741. }
  742. .box.category:not([data-unread="0"]) .box-title:active {
  743. background: #2980b9;
  744. }
  745. .box.category:not([data-unread="0"]) .box-title .title {
  746. font-weight: bold;
  747. color: #fff;
  748. }
  749. .box.category .title:not([data-unread="0"])::after {
  750. background: none;
  751. border: 0;
  752. position: absolute;
  753. top: 5px; right: 10px;
  754. font-weight: bold;
  755. box-shadow: none;
  756. text-shadow: none;
  757. }
  758. /*=== DIVERS */
  759. /*===========*/
  760. .aside.aside_feed .nav-form input,
  761. .aside.aside_feed .nav-form select {
  762. width: 140px;
  763. }
  764. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  765. right: -20px;
  766. }
  767. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  768. right: 33px;
  769. }
  770. /*=== STATISTICS */
  771. /*===============*/
  772. .stat {
  773. margin: 10px 0 20px;
  774. }
  775. .stat th,
  776. .stat td,
  777. .stat tr {
  778. border: none;
  779. }
  780. .stat > table td,
  781. .stat > table th {
  782. border-bottom: 1px solid #ddd;
  783. }
  784. /*=== MOBILE */
  785. /*===========*/
  786. @media (max-width: 840px) {
  787. .form-group .group-name {
  788. padding-bottom: 0;
  789. }
  790. .aside {
  791. transition: width 200ms linear;
  792. }
  793. .aside .toggle_aside,
  794. #panel .close,
  795. .dropdown-menu .toggle_aside {
  796. background: #2c3e50;
  797. }
  798. .aside.aside_feed {
  799. padding: 0;
  800. }
  801. .nav_menu .btn {
  802. margin: 5px 10px;
  803. padding: 3px 5px;
  804. min-height: 0;
  805. }
  806. .nav_menu .stick {
  807. margin: 0 10px;
  808. }
  809. .nav_menu .stick .btn {
  810. margin: 5px 0;
  811. }
  812. .nav_menu .search {
  813. display: inline-block;
  814. max-width: 97%;
  815. }
  816. .nav_menu .search input {
  817. padding: 3px 5px;
  818. max-width: 97%;
  819. width: 90px;
  820. }
  821. .nav_menu .search input:focus {
  822. width: 400px;
  823. }
  824. .dropdown-target:target ~ .dropdown-toggle::after {
  825. background-color: #fafafa;
  826. border-top: 1px solid #95a5a6;
  827. border-left: 1px solid #95a5a6;
  828. }
  829. .dropdown-target:target ~ .btn.dropdown-toggle::after {
  830. bottom: -19px;
  831. }
  832. .day .name {
  833. font-size: 1.1rem;
  834. }
  835. .notification {
  836. border-radius: 0;
  837. }
  838. .notification a.close {
  839. background: transparent;
  840. display: block;
  841. left: 0;
  842. }
  843. .notification a.close:hover {
  844. opacity: 0.5;
  845. }
  846. .notification a.close .icon {
  847. display: none;
  848. }
  849. .post {
  850. padding-left: 15px;
  851. padding-right: 15px;
  852. }
  853. #close-slider.active {
  854. background: #2c3e50;
  855. }
  856. }