flat.css 16 KB

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