flat.rtl.css 16 KB

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