flat.css 16 KB

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