flat.rtl.css 16 KB

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