flat.rtl.css 16 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024
  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-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. /*=== 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: 0 5px 5px 0;
  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: 5px 0 0 5px;
  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-right-width: 1px;
  146. border-right-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-right-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-right-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-right-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: right;
  251. }
  252. .dropdown-menu::after {
  253. border-color: #95a5a6;
  254. left: 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: right;
  261. color: #34495e;
  262. }
  263. .dropdown-header a {
  264. position: absolute;
  265. left: 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-right: 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 -14px 0 0;
  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-left: 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. background: #ecf0f1;
  359. color: #333;
  360. border-bottom: 1px solid #ddd;
  361. border-radius: 5px 5px 0 0;
  362. }
  363. .box .box-title .configure {
  364. margin-left: 4px;
  365. }
  366. .box .box-content {
  367. padding-right: 30px;
  368. max-height: 260px;
  369. }
  370. .box .box-content .item {
  371. font-size: 0.9rem;
  372. }
  373. .box .box-title .configure .icon,
  374. .box .box-content .item .configure .icon {
  375. vertical-align: middle;
  376. background-color: #95a5a6;
  377. border-radius: 3px;
  378. }
  379. /*=== Tree */
  380. .tree {
  381. margin: 10px 0;
  382. }
  383. .tree-folder-title {
  384. position: relative;
  385. padding: 0 10px;
  386. background: #34495e;
  387. line-height: 2.5rem;
  388. font-size: 1rem;
  389. }
  390. .tree-folder-title .title {
  391. background: inherit;
  392. color: #fff;
  393. }
  394. .tree-folder-title .title:hover {
  395. text-decoration: none;
  396. }
  397. .tree-folder.active .tree-folder-title {
  398. background: #2980b9;
  399. font-weight: bold;
  400. }
  401. .tree-folder-items {
  402. background: #2c3e50;
  403. }
  404. .tree-folder-items > .item {
  405. font-size: 0.8rem;
  406. }
  407. .tree-folder-items > .item.active {
  408. background: #2980b9;
  409. }
  410. .tree-folder-items > .item > a {
  411. text-decoration: none;
  412. color: #fff;
  413. }
  414. /*=== Scrollbar */
  415. @supports (scrollbar-width: thin) {
  416. #sidebar {
  417. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
  418. }
  419. #sidebar:hover {
  420. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
  421. }
  422. }
  423. @supports not (scrollbar-width: thin) {
  424. #sidebar::-webkit-scrollbar-thumb {
  425. background: rgba(255, 255, 255, 0.1);
  426. }
  427. #sidebar:hover::-webkit-scrollbar-thumb {
  428. background: rgba(255, 255, 255, 0.3);
  429. }
  430. }
  431. /*=== STRUCTURE */
  432. /*===============*/
  433. /*=== Header */
  434. .header {
  435. background: #ecf0f1;
  436. }
  437. .header > .item {
  438. vertical-align: middle;
  439. text-align: center;
  440. }
  441. .header > .item.title a:hover .logo {
  442. filter: brightness(1.5);
  443. }
  444. .header > .item.title h1 {
  445. margin: 0.5em 0;
  446. }
  447. .header > .item.title h1 a {
  448. text-decoration: none;
  449. }
  450. .header > .item.search input {
  451. width: 350px;
  452. }
  453. .aside {
  454. background: #ecf0f1;
  455. }
  456. .aside.aside_feed {
  457. padding: 10px 0;
  458. text-align: center;
  459. background: #34495e;
  460. border-radius: 10px 0 0 0;
  461. }
  462. .aside.aside_feed .tree {
  463. margin: 10px 0 50px;
  464. }
  465. .aside.aside_feed .icon {
  466. filter: brightness(3);
  467. }
  468. /*=== Aside main page (categories) */
  469. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  470. background-color: #2c3e50;
  471. }
  472. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  473. background-color: #34495e;
  474. }
  475. .aside .about {
  476. margin: 1rem;
  477. display: block;
  478. color: #ecf0f1;
  479. font-style: italic;
  480. }
  481. /*=== Aside main page (feeds) */
  482. .feed.item.empty.active {
  483. background: #f39c12;
  484. }
  485. .feed.item.error.active {
  486. background: #bd362f;
  487. }
  488. .feed.item.empty,
  489. .feed.item.empty > a {
  490. color: #e67e22;
  491. }
  492. .feed.item.error,
  493. .feed.item.error > a {
  494. color: #bd362f;
  495. }
  496. .feed.item.empty.active,
  497. .feed.item.error.active,
  498. .feed.item.empty.active > a,
  499. .feed.item.error.active > a {
  500. color: #fff;
  501. }
  502. .aside_feed .tree-folder-items .dropdown-menu::after {
  503. right: 2px;
  504. }
  505. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  506. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  507. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  508. border-radius: 3px;
  509. }
  510. /*=== Prompt (centered) */
  511. .prompt .form-group {
  512. margin-bottom: 1rem;
  513. }
  514. .prompt .form-group::after {
  515. display: none;
  516. }
  517. .prompt .form-group.form-group-actions {
  518. display: flex;
  519. margin-top: 2rem;
  520. align-items: center;
  521. justify-content: space-between;
  522. }
  523. .prompt .btn.btn-important {
  524. padding-right: 1.5rem;
  525. padding-left: 1.5rem;
  526. font-size: 1.1rem;
  527. }
  528. /*=== New article notification */
  529. #new-article {
  530. background: #3498db;
  531. font-size: 0.9em;
  532. text-align: center;
  533. }
  534. #new-article > a {
  535. line-height: 3em;
  536. font-weight: bold;
  537. color: #fff;
  538. }
  539. #new-article > a:hover {
  540. text-decoration: none;
  541. background: #2980b9;
  542. }
  543. /*=== Day indication */
  544. .day {
  545. padding: 0 10px;
  546. font-weight: bold;
  547. line-height: 3em;
  548. border-right: 2px solid #ecf0f1;
  549. }
  550. .day .name {
  551. padding: 0 0 0 10px;
  552. color: #aab;
  553. font-size: 1.8em;
  554. opacity: 0.3;
  555. font-style: italic;
  556. text-align: left;
  557. }
  558. /*=== Index menu */
  559. .nav_menu {
  560. text-align: center;
  561. padding: 5px 0;
  562. }
  563. .dropdown-menu .dropdown-header .icon {
  564. filter: invert(0.6);
  565. }
  566. .dropdown-menu .dropdown-header a:hover .icon {
  567. filter: invert(0.6) invert(77%) sepia(63%) saturate(4993%) hue-rotate(177deg) brightness(88%) contrast(96%);
  568. }
  569. /*=== Feed articles */
  570. .flux {
  571. border-right: 2px solid #ecf0f1;
  572. }
  573. .flux:not(.current):hover .flux_header .title,
  574. .flux .flux_header:hover {
  575. background: #fff;
  576. }
  577. .flux.current {
  578. background: #fff;
  579. border-right-color: #3498db;
  580. }
  581. .flux.not_read {
  582. border-right-color: #ff5300;
  583. }
  584. .flux.not_read:not(.current) {
  585. background: #fff3ed;
  586. }
  587. .flux.favorite {
  588. border-right-color: #ffc300;
  589. }
  590. .flux.favorite:not(.current) {
  591. background: #fff6da;
  592. }
  593. .flux_header {
  594. font-size: 0.8rem;
  595. cursor: pointer;
  596. border-top: 1px solid #ecf0f1;
  597. }
  598. .flux_header .title {
  599. font-size: 0.9rem;
  600. }
  601. .flux .flux_header .date,
  602. .flux .flux_content .bottom .date {
  603. color: #666;
  604. }
  605. .flux .bottom {
  606. font-size: 0.8rem;
  607. text-align: center;
  608. }
  609. /*=== Content of feed articles */
  610. .content {
  611. padding: 20px 10px;
  612. }
  613. .content > h1.title > a {
  614. color: #000;
  615. }
  616. .content hr {
  617. margin: 30px 10px;
  618. background: #ddd;
  619. height: 1px;
  620. border: 0;
  621. box-shadow: 0 2px 5px #ccc;
  622. }
  623. .content pre {
  624. background: #222;
  625. color: #fff;
  626. border-radius: 3px;
  627. }
  628. .content code {
  629. background: #fafafa;
  630. color: #d14;
  631. border-color: #eee;
  632. border-radius: 3px;
  633. }
  634. .content pre code {
  635. background: transparent;
  636. color: #fff;
  637. border: none;
  638. }
  639. .content blockquote {
  640. margin: 0;
  641. padding: 5px 20px;
  642. background: #fafafa;
  643. display: block;
  644. color: #333;
  645. border-top: 1px solid #ddd;
  646. border-bottom: 1px solid #ddd;
  647. }
  648. .content blockquote p {
  649. margin: 0;
  650. }
  651. /*=== Notification and actualize notification */
  652. .notification {
  653. background: #ddd;
  654. color: #666;
  655. font-size: 0.9em;
  656. border: none;
  657. border-radius: 3px;
  658. text-align: center;
  659. font-weight: bold;
  660. vertical-align: middle;
  661. }
  662. .notification.good {
  663. background: #1abc9c;
  664. color: #fff;
  665. }
  666. .notification.bad {
  667. background: #e74c3c;
  668. color: #fff;
  669. }
  670. .notification a {
  671. color: #000;
  672. }
  673. .notification .close {
  674. border-radius: 3px 0 0 3px;
  675. }
  676. .notification.good .close:hover {
  677. background: #16a085;
  678. }
  679. .notification .close .icon {
  680. filter: brightness(2.5);
  681. }
  682. .notification.bad .close:hover {
  683. background: #c0392b;
  684. }
  685. .notification .close:hover .icon {
  686. filter: brightness(4);
  687. }
  688. /*=== "Load more" part */
  689. #bigMarkAsRead {
  690. text-align: center;
  691. text-decoration: none;
  692. background: #ecf0f1;
  693. }
  694. #bigMarkAsRead:hover {
  695. background: #34495e;
  696. color: #fff;
  697. }
  698. /*=== Navigation menu (for articles) */
  699. #nav_entries {
  700. background: #34495e;
  701. }
  702. /*=== READER VIEW */
  703. /*================*/
  704. #stream.reader .flux {
  705. background: #fafafa;
  706. color: #34495e;
  707. border: none;
  708. }
  709. #stream.reader .flux .flux_content {
  710. background-color: #fff;
  711. border-color: #ecf0f1;
  712. }
  713. #stream.reader .flux .author {
  714. color: #999;
  715. }
  716. /*=== GLOBAL VIEW */
  717. /*================*/
  718. .box.category .box-title .title {
  719. font-weight: normal;
  720. text-decoration: none;
  721. text-align: right;
  722. }
  723. .box.category:not([data-unread="0"]) .box-title {
  724. background: #3498db;
  725. }
  726. .box.category:not([data-unread="0"]) .box-title:active {
  727. background: #2980b9;
  728. }
  729. .box.category:not([data-unread="0"]) .box-title .title {
  730. font-weight: bold;
  731. color: #fff;
  732. }
  733. .box.category .title:not([data-unread="0"])::after {
  734. background: none;
  735. border: 0;
  736. position: absolute;
  737. top: 5px; left: 10px;
  738. font-weight: bold;
  739. box-shadow: none;
  740. text-shadow: none;
  741. }
  742. /*=== DIVERS */
  743. /*===========*/
  744. .aside.aside_feed .nav-form input,
  745. .aside.aside_feed .nav-form select {
  746. width: 140px;
  747. }
  748. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  749. left: -20px;
  750. }
  751. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  752. left: 33px;
  753. }
  754. /*=== STATISTICS */
  755. /*===============*/
  756. .stat {
  757. margin: 10px 0 20px;
  758. }
  759. .stat th,
  760. .stat td,
  761. .stat tr {
  762. border: none;
  763. }
  764. .stat > table td,
  765. .stat > table th {
  766. border-bottom: 1px solid #ddd;
  767. }
  768. /*=== MOBILE */
  769. /*===========*/
  770. @media (max-width: 840px) {
  771. .form-group .group-name {
  772. padding-bottom: 0;
  773. }
  774. .aside {
  775. transition: width 200ms linear;
  776. }
  777. .aside .toggle_aside,
  778. #overlay .close,
  779. .dropdown-menu .toggle_aside {
  780. background: #2c3e50;
  781. }
  782. .aside.aside_feed {
  783. padding: 0;
  784. }
  785. .nav_menu .btn {
  786. margin: 5px 10px;
  787. padding: 3px 5px;
  788. min-height: 0;
  789. }
  790. .nav_menu .stick {
  791. margin: 0 10px;
  792. }
  793. .nav_menu .stick .btn {
  794. margin: 5px 0;
  795. }
  796. .nav_menu .search {
  797. display: inline-block;
  798. max-width: 97%;
  799. }
  800. .nav_menu .search input {
  801. padding: 3px 5px;
  802. max-width: 97%;
  803. width: 90px;
  804. }
  805. .nav_menu .search input:focus {
  806. width: 400px;
  807. }
  808. .dropdown-target:target ~ .dropdown-toggle::after {
  809. background-color: #fafafa;
  810. border-top: 1px solid #95a5a6;
  811. border-right: 1px solid #95a5a6;
  812. }
  813. .dropdown-target:target ~ .btn.dropdown-toggle::after {
  814. bottom: -19px;
  815. }
  816. .day .name {
  817. font-size: 1.1rem;
  818. }
  819. .notification {
  820. border-radius: 0;
  821. }
  822. .notification .close {
  823. background: transparent;
  824. display: block;
  825. right: 0;
  826. }
  827. .notification .close:hover {
  828. opacity: 0.5;
  829. }
  830. .notification .close .icon {
  831. display: none;
  832. }
  833. .post {
  834. padding-right: 15px;
  835. padding-left: 15px;
  836. }
  837. #close-slider.active {
  838. background: #2c3e50;
  839. }
  840. }