flat.rtl.css 16 KB

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