flat.rtl.css 16 KB

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