flat.css 16 KB

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