flat.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-left-color: #ddd;
  42. border-radius: 5px;
  43. min-height: 25px;
  44. line-height: 1;
  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. .config-articleicons td,
  73. .config-articleicons 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-color: #e6ecedaa;
  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: 0.25rem 0.5rem;
  151. background: #3498db;
  152. color: #fff;
  153. font-size: 0.9rem;
  154. border: none;
  155. border-bottom: 3px solid #2980b9;
  156. border-left-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-left-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-left-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. .nav-list .item > .as-link {
  228. padding: 0 1rem;
  229. }
  230. .nav-list a:hover {
  231. text-decoration: none;
  232. }
  233. .nav-list .nav-header {
  234. padding: 0 1rem;
  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:focus,
  284. .dropdown-menu .item > a:hover,
  285. .dropdown-menu .item > button:focus:not([disabled]),
  286. .dropdown-menu .item > button:hover:not([disabled]),
  287. .dropdown-menu .item > label:focus:not(.noHover),
  288. .dropdown-menu .item > label:hover:not(.noHover) {
  289. background: #2980b9;
  290. color: #fff;
  291. }
  292. .dropdown-menu > .item a:hover .icon,
  293. .nav-list.aside .item a:hover .icon {
  294. filter: brightness(3);
  295. }
  296. .dropdown-menu > .item[aria-checked="true"] > a::before {
  297. font-weight: bold;
  298. margin: 0 0 0 -14px;
  299. }
  300. .dropdown-menu .input select,
  301. .dropdown-menu .input input {
  302. margin: 0 auto 5px;
  303. padding: 2px 5px;
  304. border-radius: 3px;
  305. }
  306. .item ~ .dropdown-header,
  307. .dropdown-section ~ .dropdown-section,
  308. .item.separator {
  309. border-top-color: #ddd;
  310. }
  311. /*=== Alerts */
  312. .alert {
  313. background: #f4f4f4;
  314. color: #aaa;
  315. font-size: 0.9em;
  316. border: 1px solid #ccc;
  317. border-right: 1px solid #aaa;
  318. border-bottom: 1px solid #aaa;
  319. border-radius: 5px;
  320. text-shadow: 0 0 1px #eee;
  321. }
  322. .alert-head {
  323. font-size: 1.15em;
  324. }
  325. .alert > a {
  326. text-decoration: underline;
  327. color: inherit;
  328. }
  329. .alert-warn {
  330. background: #ffe;
  331. color: #c95;
  332. border: 1px solid #eeb;
  333. }
  334. .alert-success {
  335. background: #dfd;
  336. color: #484;
  337. border: 1px solid #cec;
  338. }
  339. .alert-error {
  340. background: #fdd;
  341. color: #844;
  342. border: 1px solid #ecc;
  343. }
  344. /*=== Pagination */
  345. .pagination {
  346. background: #ecf0f1;
  347. color: #000;
  348. }
  349. .pagination .item a {
  350. color: #000;
  351. }
  352. #load_more.loading,
  353. #load_more.loading:hover {
  354. background: url("loader.gif") center center no-repeat #34495e;
  355. }
  356. /*=== Boxes */
  357. .box {
  358. border: 1px solid #ddd;
  359. border-radius: 5px;
  360. }
  361. .box .box-title {
  362. background: #ecf0f1;
  363. color: #333;
  364. border-bottom: 1px solid #ddd;
  365. border-radius: 5px 5px 0 0;
  366. }
  367. .box .box-title .configure {
  368. margin-right: 4px;
  369. }
  370. .box .box-content {
  371. padding-left: 30px;
  372. max-height: 260px;
  373. }
  374. .box .box-content .item {
  375. font-size: 0.9rem;
  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: 350px;
  456. }
  457. .aside {
  458. background: #ecf0f1;
  459. }
  460. .aside.aside_feed {
  461. padding: 10px 0;
  462. text-align: center;
  463. background: #34495e;
  464. border-radius: 0 10px 0 0;
  465. }
  466. .aside.aside_feed .tree {
  467. margin: 10px 0 50px;
  468. }
  469. .aside.aside_feed .icon {
  470. filter: brightness(3);
  471. }
  472. /*=== Aside main page (categories) */
  473. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  474. background-color: #2c3e50;
  475. }
  476. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  477. background-color: #34495e;
  478. }
  479. .aside .about {
  480. margin: 1rem;
  481. display: block;
  482. color: #ecf0f1;
  483. font-style: italic;
  484. }
  485. /*=== Aside main page (feeds) */
  486. .feed.item.empty.active {
  487. background: #f39c12;
  488. }
  489. .feed.item.error.active {
  490. background: #bd362f;
  491. }
  492. .feed.item.empty,
  493. .feed.item.empty > a {
  494. color: #e67e22;
  495. }
  496. .feed.item.error,
  497. .feed.item.error > a {
  498. color: #bd362f;
  499. }
  500. .feed.item.empty.active,
  501. .feed.item.error.active,
  502. .feed.item.empty.active > a,
  503. .feed.item.error.active > a {
  504. color: #fff;
  505. }
  506. .aside_feed .tree-folder-items .dropdown-menu::after {
  507. left: 2px;
  508. }
  509. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  510. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  511. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  512. border-radius: 3px;
  513. }
  514. /*=== Prompt (centered) */
  515. .prompt .form-group {
  516. margin-bottom: 1rem;
  517. }
  518. .prompt .form-group::after {
  519. display: none;
  520. }
  521. .prompt .form-group.form-group-actions {
  522. display: flex;
  523. margin-top: 2rem;
  524. align-items: center;
  525. justify-content: space-between;
  526. }
  527. .prompt .btn.btn-important {
  528. padding-left: 1.5rem;
  529. padding-right: 1.5rem;
  530. font-size: 1.1rem;
  531. }
  532. /*=== New article notification */
  533. #new-article {
  534. background: #3498db;
  535. font-size: 0.9em;
  536. text-align: center;
  537. }
  538. #new-article > a {
  539. line-height: 3em;
  540. font-weight: bold;
  541. color: #fff;
  542. }
  543. #new-article > a:hover {
  544. text-decoration: none;
  545. background: #2980b9;
  546. }
  547. /*=== Day indication */
  548. .day {
  549. padding: 0 10px;
  550. font-weight: bold;
  551. line-height: 3em;
  552. border-left: 2px solid #ecf0f1;
  553. }
  554. .day .name {
  555. padding: 0 10px 0 0;
  556. color: #aab;
  557. font-size: 1.8em;
  558. opacity: 0.3;
  559. font-style: italic;
  560. text-align: right;
  561. }
  562. /*=== Index menu */
  563. .nav_menu {
  564. text-align: center;
  565. padding: 5px 0;
  566. }
  567. .dropdown-menu .dropdown-header .icon {
  568. filter: invert(0.6);
  569. }
  570. .dropdown-menu .dropdown-header a:hover .icon {
  571. filter: invert(0.6) invert(77%) sepia(63%) saturate(4993%) hue-rotate(177deg) brightness(88%) contrast(96%);
  572. }
  573. /*=== Feed articles */
  574. .flux {
  575. border-left: 2px solid #ecf0f1;
  576. }
  577. .flux:not(.current):hover .flux_header .title,
  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 .flux_header .date,
  606. .flux .flux_content .bottom .date {
  607. color: #666;
  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. background: #222;
  629. color: #fff;
  630. border-radius: 3px;
  631. }
  632. .content code {
  633. background: #fafafa;
  634. color: #d14;
  635. border-color: #eee;
  636. border-radius: 3px;
  637. }
  638. .content pre code {
  639. background: transparent;
  640. color: #fff;
  641. border: none;
  642. }
  643. .content blockquote {
  644. margin: 0;
  645. padding: 5px 20px;
  646. background: #fafafa;
  647. display: block;
  648. color: #333;
  649. border-top: 1px solid #ddd;
  650. border-bottom: 1px solid #ddd;
  651. }
  652. .content blockquote p {
  653. margin: 0;
  654. }
  655. /*=== Notification and actualize notification */
  656. .notification {
  657. background: #ddd;
  658. color: #666;
  659. font-size: 0.9em;
  660. border: none;
  661. border-radius: 3px;
  662. text-align: center;
  663. font-weight: bold;
  664. vertical-align: middle;
  665. }
  666. .notification.good {
  667. background: #1abc9c;
  668. color: #fff;
  669. }
  670. .notification.bad {
  671. background: #e74c3c;
  672. color: #fff;
  673. }
  674. .notification a {
  675. color: #000;
  676. }
  677. .notification .close {
  678. border-radius: 0 3px 3px 0;
  679. }
  680. .notification.good .close:hover {
  681. background: #16a085;
  682. }
  683. .notification .close .icon {
  684. filter: brightness(2.5);
  685. }
  686. .notification.bad .close:hover {
  687. background: #c0392b;
  688. }
  689. .notification .close:hover .icon {
  690. filter: brightness(4);
  691. }
  692. /*=== "Load more" part */
  693. #bigMarkAsRead.big {
  694. text-align: center;
  695. text-decoration: none;
  696. background: #ecf0f1;
  697. }
  698. #bigMarkAsRead:hover {
  699. background: #34495e;
  700. color: #fff;
  701. }
  702. /*=== Navigation menu (for articles) */
  703. #nav_entries {
  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 .flux_content {
  714. background-color: #fff;
  715. border-color: #ecf0f1;
  716. }
  717. #stream.reader .flux .author {
  718. color: #999;
  719. }
  720. /*=== GLOBAL VIEW */
  721. /*================*/
  722. .box.category .box-title .title {
  723. font-weight: normal;
  724. text-decoration: none;
  725. text-align: left;
  726. }
  727. .box.category:not([data-unread="0"]) .box-title {
  728. background: #3498db;
  729. }
  730. .box.category:not([data-unread="0"]) .box-title:active {
  731. background: #2980b9;
  732. }
  733. .box.category:not([data-unread="0"]) .box-title .title {
  734. font-weight: bold;
  735. color: #fff;
  736. }
  737. .box.category .title:not([data-unread="0"])::after {
  738. background: none;
  739. border: 0;
  740. position: absolute;
  741. top: 5px; right: 10px;
  742. font-weight: bold;
  743. box-shadow: none;
  744. text-shadow: none;
  745. }
  746. /*=== DIVERS */
  747. /*===========*/
  748. .aside.aside_feed .nav-form input,
  749. .aside.aside_feed .nav-form select {
  750. width: 140px;
  751. }
  752. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  753. right: -20px;
  754. }
  755. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  756. right: 33px;
  757. }
  758. /*=== STATISTICS */
  759. /*===============*/
  760. .stat {
  761. margin: 10px 0 20px;
  762. }
  763. .stat th,
  764. .stat td,
  765. .stat tr {
  766. border: none;
  767. }
  768. .stat > table td,
  769. .stat > table th {
  770. border-bottom: 1px solid #ddd;
  771. }
  772. /*=== MOBILE */
  773. /*===========*/
  774. @media (max-width: 840px) {
  775. .form-group .group-name {
  776. padding-bottom: 0;
  777. }
  778. .aside {
  779. transition: width 200ms linear;
  780. }
  781. .aside .toggle_aside,
  782. #overlay .close,
  783. .dropdown-menu .toggle_aside {
  784. background: #2c3e50;
  785. }
  786. .aside.aside_feed {
  787. padding: 0;
  788. }
  789. .nav_menu .btn {
  790. margin: 5px 10px;
  791. padding: 3px 5px;
  792. min-height: 0;
  793. }
  794. .nav_menu .stick {
  795. margin: 0 10px;
  796. }
  797. .nav_menu .stick .btn {
  798. margin: 5px 0;
  799. }
  800. .nav_menu .search {
  801. display: inline-block;
  802. max-width: 97%;
  803. }
  804. .nav_menu .search input {
  805. padding: 3px 5px;
  806. max-width: 97%;
  807. width: 90px;
  808. }
  809. .nav_menu .search input:focus {
  810. width: 400px;
  811. }
  812. .dropdown-target:target ~ .dropdown-toggle::after {
  813. background-color: #fafafa;
  814. border-top: 1px solid #95a5a6;
  815. border-left: 1px solid #95a5a6;
  816. }
  817. .dropdown-target:target ~ .btn.dropdown-toggle::after {
  818. bottom: -19px;
  819. }
  820. .day .name {
  821. font-size: 1.1rem;
  822. }
  823. .notification {
  824. border-radius: 0;
  825. }
  826. .notification .close {
  827. background: transparent;
  828. display: block;
  829. left: 0;
  830. }
  831. .notification .close:hover {
  832. opacity: 0.5;
  833. }
  834. .notification .close .icon {
  835. display: none;
  836. }
  837. .post {
  838. padding-left: 15px;
  839. padding-right: 15px;
  840. }
  841. #close-slider.active {
  842. background: #2c3e50;
  843. }
  844. }