flat.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023
  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. textarea {
  32. width: 360px;
  33. height: 100px;
  34. }
  35. input, select, textarea {
  36. padding: 5px;
  37. background: #fff;
  38. color: #666;
  39. border: none;
  40. border-bottom: 3px solid #ddd;
  41. border-left-color: #ddd;
  42. border-radius: 5px;
  43. min-height: 25px;
  44. line-height: 25px;
  45. vertical-align: middle;
  46. }
  47. option {
  48. padding: 0 .5em;
  49. }
  50. input:focus, select:focus, textarea:focus {
  51. color: #333;
  52. border-color: #2980b9;
  53. }
  54. input:invalid, select:invalid {
  55. color: #f00;
  56. border-color: #f00;
  57. box-shadow: none;
  58. }
  59. input:disabled, select:disabled {
  60. background: #eee;
  61. }
  62. /*=== Tables */
  63. table {
  64. border-collapse: collapse;
  65. }
  66. th, td {
  67. border: 1px solid #ddd;
  68. }
  69. th {
  70. background: #f6f6f6;
  71. }
  72. .config-articleicons td,
  73. .config-articleicons th {
  74. font-weight: normal;
  75. text-align: center;
  76. }
  77. /*=== COMPONENTS */
  78. /*===============*/
  79. /*=== Forms */
  80. .form-group {
  81. padding: 5px;
  82. border: 1px solid transparent;
  83. border-radius: 3px;
  84. }
  85. .form-group::after {
  86. display: block;
  87. clear: both;
  88. }
  89. .form-group:hover {
  90. background: #fff;
  91. border: 1px solid #eee;
  92. border-radius: 3px;
  93. }
  94. .form-group.form-actions {
  95. margin: 15px 0 25px;
  96. padding: 5px 0;
  97. background-color: #e6ecedaa;
  98. border-top: 3px solid #bdc3c7;
  99. border-radius: 5px 5px 0 0;
  100. }
  101. .form-group.form-actions .btn {
  102. margin: 0 10px;
  103. }
  104. .form-group .group-name {
  105. padding: 10px 0;
  106. }
  107. .form-group .group-controls {
  108. min-height: 25px;
  109. padding: 5px 0;
  110. }
  111. .form-group .group-controls .control {
  112. line-height: 2.0em;
  113. }
  114. /*=== Buttons */
  115. .stick input,
  116. .stick .btn,
  117. .group .btn {
  118. border-radius: 0;
  119. }
  120. .stick .btn:first-child,
  121. .group .btn:first-child,
  122. .stick input:first-child {
  123. border-radius: 5px 0 0 5px;
  124. }
  125. .stick .btn:last-child,
  126. .group .btn:last-child,
  127. .stick input:last-child,
  128. .stick .dropdown:last-child > .btn,
  129. .group .dropdown:last-child > .btn {
  130. border-radius: 0 5px 5px 0;
  131. }
  132. .stick .btn + .btn,
  133. .group .btn + .btn,
  134. .stick .btn + input,
  135. .stick .btn + .dropdown > .btn,
  136. .group .btn + .dropdown > .btn,
  137. .stick input + .btn,
  138. .stick input + input,
  139. .stick input + .dropdown > .btn,
  140. .stick .dropdown + .btn,
  141. .group .dropdown + .btn,
  142. .stick .dropdown + input,
  143. .stick .dropdown + .dropdown > .btn,
  144. .group .dropdown + .dropdown > .btn {
  145. border-left-width: 1px;
  146. border-left-style: solid;
  147. }
  148. .btn {
  149. margin: 0;
  150. padding: 5px 10px;
  151. background: #3498db;
  152. color: #fff;
  153. font-size: 0.9rem;
  154. border: none;
  155. border-bottom: 3px solid #2980b9;
  156. border-left-color: #2980b9;
  157. border-radius: 5px;
  158. min-height: 25px;
  159. min-width: 15px;
  160. line-height: 25px;
  161. vertical-align: middle;
  162. }
  163. .btn:hover {
  164. text-decoration: none;
  165. }
  166. .btn.active,
  167. .btn:active,
  168. .btn:hover,
  169. .dropdown-target:target ~ .btn.dropdown-toggle {
  170. background: #2980b9;
  171. }
  172. .btn .icon {
  173. filter: brightness(5);
  174. }
  175. #toggle-unread .icon,
  176. #toggle-starred .icon {
  177. filter: none;
  178. }
  179. .btn-important {
  180. font-weight: normal;
  181. background: #e67e22;
  182. color: #fff;
  183. border-bottom: 3px solid #d35400;
  184. border-left-color: #d35400;
  185. }
  186. .btn-important:hover,
  187. .btn-important:active {
  188. background: #d35400;
  189. }
  190. .btn-important .icon {
  191. filter: brightness(3);
  192. }
  193. .btn-attention {
  194. background: #e74c3c;
  195. color: #fff;
  196. border-bottom: 3px solid #c0392b;
  197. border-left-color: #c0392b;
  198. }
  199. .btn-attention:hover,
  200. .btn-attention:active {
  201. background: #c0392b;
  202. }
  203. .switch.active {
  204. background-color: #2980b9;
  205. }
  206. .switch.active:hover {
  207. background-image: url('./icons/disabled-light.svg');
  208. }
  209. /*=== Navigation */
  210. .nav-list {
  211. font-size: 0.9rem;
  212. }
  213. .nav-list .item,
  214. .nav-list .item.nav-header {
  215. min-height: 2.5em;
  216. line-height: 2.5;
  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 1rem;
  228. }
  229. .nav-list a:hover {
  230. text-decoration: none;
  231. }
  232. .nav-list .nav-header {
  233. padding: 0 1rem;
  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:not([disabled]),
  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: 350px;
  454. }
  455. .aside {
  456. background: #ecf0f1;
  457. }
  458. .aside.aside_feed {
  459. padding: 10px 0;
  460. text-align: center;
  461. background: #34495e;
  462. border-radius: 0 10px 0 0;
  463. }
  464. .aside.aside_feed .tree {
  465. margin: 10px 0 50px;
  466. }
  467. .aside.aside_feed .icon {
  468. filter: brightness(3);
  469. }
  470. /*=== Aside main page (categories) */
  471. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  472. background-color: #2c3e50;
  473. }
  474. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  475. background-color: #34495e;
  476. }
  477. .aside .about {
  478. margin: 1rem;
  479. display: block;
  480. color: #ecf0f1;
  481. font-style: italic;
  482. }
  483. /*=== Aside main page (feeds) */
  484. .feed.item.empty.active {
  485. background: #f39c12;
  486. }
  487. .feed.item.error.active {
  488. background: #bd362f;
  489. }
  490. .feed.item.empty,
  491. .feed.item.empty > a {
  492. color: #e67e22;
  493. }
  494. .feed.item.error,
  495. .feed.item.error > a {
  496. color: #bd362f;
  497. }
  498. .feed.item.empty.active,
  499. .feed.item.error.active,
  500. .feed.item.empty.active > a,
  501. .feed.item.error.active > a {
  502. color: #fff;
  503. }
  504. .aside_feed .tree-folder-items .dropdown-menu::after {
  505. left: 2px;
  506. }
  507. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  508. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  509. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  510. border-radius: 3px;
  511. }
  512. /*=== Prompt (centered) */
  513. .prompt .form-group {
  514. margin-bottom: 1rem;
  515. }
  516. .prompt .form-group::after {
  517. display: none;
  518. }
  519. .prompt .form-group.form-group-actions {
  520. display: flex;
  521. margin-top: 2rem;
  522. align-items: center;
  523. justify-content: space-between;
  524. }
  525. .prompt .btn.btn-important {
  526. padding-left: 1.5rem;
  527. padding-right: 1.5rem;
  528. font-size: 1.1rem;
  529. }
  530. /*=== New article notification */
  531. #new-article {
  532. background: #3498db;
  533. font-size: 0.9em;
  534. text-align: center;
  535. }
  536. #new-article > a {
  537. line-height: 3em;
  538. font-weight: bold;
  539. color: #fff;
  540. }
  541. #new-article > a:hover {
  542. text-decoration: none;
  543. background: #2980b9;
  544. }
  545. /*=== Day indication */
  546. .day {
  547. padding: 0 10px;
  548. font-weight: bold;
  549. line-height: 3em;
  550. border-left: 2px solid #ecf0f1;
  551. }
  552. .day .name {
  553. padding: 0 10px 0 0;
  554. color: #aab;
  555. font-size: 1.8em;
  556. opacity: 0.3;
  557. font-style: italic;
  558. text-align: right;
  559. }
  560. /*=== Index menu */
  561. .nav_menu {
  562. text-align: center;
  563. padding: 5px 0;
  564. }
  565. .dropdown-menu .dropdown-header .icon {
  566. filter: invert(0.6);
  567. }
  568. .dropdown-menu .dropdown-header a:hover .icon {
  569. filter: invert(0.6) invert(77%) sepia(63%) saturate(4993%) hue-rotate(177deg) brightness(88%) contrast(96%);
  570. }
  571. /*=== Feed articles */
  572. .flux {
  573. border-left: 2px solid #ecf0f1;
  574. }
  575. .flux:not(.current):hover .flux_header .title,
  576. .flux .flux_header:hover {
  577. background: #fff;
  578. }
  579. .flux.current {
  580. background: #fff;
  581. border-left-color: #3498db;
  582. }
  583. .flux.not_read {
  584. border-left-color: #ff5300;
  585. }
  586. .flux.not_read:not(.current) {
  587. background: #fff3ed;
  588. }
  589. .flux.favorite {
  590. border-left-color: #ffc300;
  591. }
  592. .flux.favorite:not(.current) {
  593. background: #fff6da;
  594. }
  595. .flux_header {
  596. font-size: 0.8rem;
  597. cursor: pointer;
  598. border-top: 1px solid #ecf0f1;
  599. }
  600. .flux_header .title {
  601. font-size: 0.9rem;
  602. }
  603. .flux .flux_header .date,
  604. .flux .flux_content .bottom .date {
  605. color: #666;
  606. }
  607. .flux .bottom {
  608. font-size: 0.8rem;
  609. text-align: center;
  610. }
  611. /*=== Content of feed articles */
  612. .content {
  613. padding: 20px 10px;
  614. }
  615. .content > h1.title > a {
  616. color: #000;
  617. }
  618. .content hr {
  619. margin: 30px 10px;
  620. background: #ddd;
  621. height: 1px;
  622. border: 0;
  623. box-shadow: 0 2px 5px #ccc;
  624. }
  625. .content pre {
  626. margin: 10px auto;
  627. padding: 10px 20px;
  628. overflow: auto;
  629. background: #222;
  630. color: #fff;
  631. font-size: 0.9rem;
  632. border-radius: 3px;
  633. }
  634. .content code {
  635. padding: 2px 5px;
  636. background: #fafafa;
  637. color: #d14;
  638. border: 1px solid #eee;
  639. border-radius: 3px;
  640. }
  641. .content pre code {
  642. background: transparent;
  643. color: #fff;
  644. border: none;
  645. }
  646. .content blockquote {
  647. margin: 0;
  648. padding: 5px 20px;
  649. background: #fafafa;
  650. display: block;
  651. color: #333;
  652. border-top: 1px solid #ddd;
  653. border-bottom: 1px solid #ddd;
  654. }
  655. .content blockquote p {
  656. margin: 0;
  657. }
  658. /*=== Notification and actualize notification */
  659. .notification {
  660. background: #ddd;
  661. color: #666;
  662. font-size: 0.9em;
  663. border: none;
  664. border-radius: 3px;
  665. text-align: center;
  666. font-weight: bold;
  667. vertical-align: middle;
  668. }
  669. .notification.good {
  670. background: #1abc9c;
  671. color: #fff;
  672. }
  673. .notification.bad {
  674. background: #e74c3c;
  675. color: #fff;
  676. }
  677. .notification a {
  678. color: #000;
  679. }
  680. .notification a.close {
  681. border-radius: 0 3px 3px 0;
  682. }
  683. .notification.good a.close:hover {
  684. background: #16a085;
  685. }
  686. .notification.bad a.close:hover {
  687. background: #c0392b;
  688. }
  689. /*=== "Load more" part */
  690. #bigMarkAsRead {
  691. text-align: center;
  692. text-decoration: none;
  693. background: #ecf0f1;
  694. }
  695. #bigMarkAsRead:hover {
  696. background: #34495e;
  697. color: #fff;
  698. }
  699. /*=== Navigation menu (for articles) */
  700. #nav_entries {
  701. background: #34495e;
  702. }
  703. /*=== READER VIEW */
  704. /*================*/
  705. #stream.reader .flux {
  706. background: #fafafa;
  707. color: #34495e;
  708. border: none;
  709. }
  710. #stream.reader .flux .content {
  711. background-color: #fff;
  712. border-color: #ecf0f1;
  713. }
  714. #stream.reader .flux .author {
  715. color: #999;
  716. }
  717. /*=== GLOBAL VIEW */
  718. /*================*/
  719. .box.category .box-title .title {
  720. font-weight: normal;
  721. text-decoration: none;
  722. text-align: left;
  723. }
  724. .box.category:not([data-unread="0"]) .box-title {
  725. background: #3498db;
  726. }
  727. .box.category:not([data-unread="0"]) .box-title:active {
  728. background: #2980b9;
  729. }
  730. .box.category:not([data-unread="0"]) .box-title .title {
  731. font-weight: bold;
  732. color: #fff;
  733. }
  734. .box.category .title:not([data-unread="0"])::after {
  735. background: none;
  736. border: 0;
  737. position: absolute;
  738. top: 5px; right: 10px;
  739. font-weight: bold;
  740. box-shadow: none;
  741. text-shadow: none;
  742. }
  743. /*=== DIVERS */
  744. /*===========*/
  745. .aside.aside_feed .nav-form input,
  746. .aside.aside_feed .nav-form select {
  747. width: 140px;
  748. }
  749. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  750. right: -20px;
  751. }
  752. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  753. right: 33px;
  754. }
  755. /*=== STATISTICS */
  756. /*===============*/
  757. .stat {
  758. margin: 10px 0 20px;
  759. }
  760. .stat th,
  761. .stat td,
  762. .stat tr {
  763. border: none;
  764. }
  765. .stat > table td,
  766. .stat > table th {
  767. border-bottom: 1px solid #ddd;
  768. }
  769. /*=== MOBILE */
  770. /*===========*/
  771. @media (max-width: 840px) {
  772. .form-group .group-name {
  773. padding-bottom: 0;
  774. }
  775. .aside {
  776. transition: width 200ms linear;
  777. }
  778. .aside .toggle_aside,
  779. #overlay .close,
  780. .dropdown-menu .toggle_aside {
  781. background: #2c3e50;
  782. }
  783. .aside.aside_feed {
  784. padding: 0;
  785. }
  786. .nav_menu .btn {
  787. margin: 5px 10px;
  788. padding: 3px 5px;
  789. min-height: 0;
  790. }
  791. .nav_menu .stick {
  792. margin: 0 10px;
  793. }
  794. .nav_menu .stick .btn {
  795. margin: 5px 0;
  796. }
  797. .nav_menu .search {
  798. display: inline-block;
  799. max-width: 97%;
  800. }
  801. .nav_menu .search input {
  802. padding: 3px 5px;
  803. max-width: 97%;
  804. width: 90px;
  805. }
  806. .nav_menu .search input:focus {
  807. width: 400px;
  808. }
  809. .dropdown-target:target ~ .dropdown-toggle::after {
  810. background-color: #fafafa;
  811. border-top: 1px solid #95a5a6;
  812. border-left: 1px solid #95a5a6;
  813. }
  814. .dropdown-target:target ~ .btn.dropdown-toggle::after {
  815. bottom: -19px;
  816. }
  817. .day .name {
  818. font-size: 1.1rem;
  819. }
  820. .notification {
  821. border-radius: 0;
  822. }
  823. .notification a.close {
  824. background: transparent;
  825. display: block;
  826. left: 0;
  827. }
  828. .notification a.close:hover {
  829. opacity: 0.5;
  830. }
  831. .notification a.close .icon {
  832. display: none;
  833. }
  834. .post {
  835. padding-left: 15px;
  836. padding-right: 15px;
  837. }
  838. #close-slider.active {
  839. background: #2c3e50;
  840. }
  841. }