flat.css 16 KB

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