flat.rtl.css 16 KB

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