flat.css 16 KB

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