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