flat.css 15 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016
  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. .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: 5px 10px;
  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. 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: left;
  251. }
  252. .dropdown-menu::after {
  253. border-color: #95a5a6;
  254. right: 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: left;
  261. color: #34495e;
  262. }
  263. .dropdown-header a {
  264. position: absolute;
  265. right: 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-left: 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 0 0 -14px;
  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-right: 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. background: #ecf0f1;
  359. color: #333;
  360. border-bottom: 1px solid #ddd;
  361. border-radius: 5px 5px 0 0;
  362. }
  363. .box .box-title .configure {
  364. margin-right: 4px;
  365. }
  366. .box .box-content {
  367. padding-left: 30px;
  368. max-height: 260px;
  369. }
  370. .box .box-content .item {
  371. font-size: 0.9rem;
  372. }
  373. .box .box-title .configure .icon,
  374. .box .box-content .item .configure .icon {
  375. vertical-align: middle;
  376. background-color: #95a5a6;
  377. border-radius: 3px;
  378. }
  379. /*=== Tree */
  380. .tree {
  381. margin: 10px 0;
  382. }
  383. .tree-folder-title {
  384. position: relative;
  385. padding: 0 10px;
  386. background: #34495e;
  387. line-height: 2.5rem;
  388. font-size: 1rem;
  389. }
  390. .tree-folder-title .title {
  391. background: inherit;
  392. color: #fff;
  393. }
  394. .tree-folder-title .title:hover {
  395. text-decoration: none;
  396. }
  397. .tree-folder.active .tree-folder-title {
  398. background: #2980b9;
  399. font-weight: bold;
  400. }
  401. .tree-folder-items {
  402. background: #2c3e50;
  403. }
  404. .tree-folder-items > .item {
  405. font-size: 0.8rem;
  406. }
  407. .tree-folder-items > .item.active {
  408. background: #2980b9;
  409. }
  410. .tree-folder-items > .item > a {
  411. text-decoration: none;
  412. color: #fff;
  413. }
  414. /*=== Scrollbar */
  415. @supports (scrollbar-width: thin) {
  416. #sidebar {
  417. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
  418. }
  419. #sidebar:hover {
  420. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
  421. }
  422. }
  423. @supports not (scrollbar-width: thin) {
  424. #sidebar::-webkit-scrollbar-thumb {
  425. background: rgba(255, 255, 255, 0.1);
  426. }
  427. #sidebar:hover::-webkit-scrollbar-thumb {
  428. background: rgba(255, 255, 255, 0.3);
  429. }
  430. }
  431. /*=== STRUCTURE */
  432. /*===============*/
  433. /*=== Header */
  434. .header {
  435. background: #ecf0f1;
  436. }
  437. .header > .item {
  438. vertical-align: middle;
  439. text-align: center;
  440. }
  441. .header > .item.title a:hover .logo {
  442. filter: brightness(1.5);
  443. }
  444. .header > .item.title h1 {
  445. margin: 0.5em 0;
  446. }
  447. .header > .item.title h1 a {
  448. text-decoration: none;
  449. }
  450. .header > .item.search input {
  451. width: 350px;
  452. }
  453. .aside {
  454. background: #ecf0f1;
  455. }
  456. .aside.aside_feed {
  457. padding: 10px 0;
  458. text-align: center;
  459. background: #34495e;
  460. border-radius: 0 10px 0 0;
  461. }
  462. .aside.aside_feed .tree {
  463. margin: 10px 0 50px;
  464. }
  465. .aside.aside_feed .icon {
  466. filter: brightness(3);
  467. }
  468. /*=== Aside main page (categories) */
  469. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  470. background-color: #2c3e50;
  471. }
  472. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  473. background-color: #34495e;
  474. }
  475. .aside .about {
  476. margin: 1rem;
  477. display: block;
  478. color: #ecf0f1;
  479. font-style: italic;
  480. }
  481. /*=== Aside main page (feeds) */
  482. .feed.item.empty.active {
  483. background: #f39c12;
  484. }
  485. .feed.item.error.active {
  486. background: #bd362f;
  487. }
  488. .feed.item.empty,
  489. .feed.item.empty > a {
  490. color: #e67e22;
  491. }
  492. .feed.item.error,
  493. .feed.item.error > a {
  494. color: #bd362f;
  495. }
  496. .feed.item.empty.active,
  497. .feed.item.error.active,
  498. .feed.item.empty.active > a,
  499. .feed.item.error.active > a {
  500. color: #fff;
  501. }
  502. .aside_feed .tree-folder-items .dropdown-menu::after {
  503. left: 2px;
  504. }
  505. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  506. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  507. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  508. border-radius: 3px;
  509. }
  510. /*=== Prompt (centered) */
  511. .prompt .form-group {
  512. margin-bottom: 1rem;
  513. }
  514. .prompt .form-group::after {
  515. display: none;
  516. }
  517. .prompt .form-group.form-group-actions {
  518. display: flex;
  519. margin-top: 2rem;
  520. align-items: center;
  521. justify-content: space-between;
  522. }
  523. .prompt .btn.btn-important {
  524. padding-left: 1.5rem;
  525. padding-right: 1.5rem;
  526. font-size: 1.1rem;
  527. }
  528. /*=== New article notification */
  529. #new-article {
  530. background: #3498db;
  531. font-size: 0.9em;
  532. text-align: center;
  533. }
  534. #new-article > a {
  535. line-height: 3em;
  536. font-weight: bold;
  537. color: #fff;
  538. }
  539. #new-article > a:hover {
  540. text-decoration: none;
  541. background: #2980b9;
  542. }
  543. /*=== Day indication */
  544. .day {
  545. padding: 0 10px;
  546. font-weight: bold;
  547. line-height: 3em;
  548. border-left: 2px solid #ecf0f1;
  549. }
  550. .day .name {
  551. padding: 0 10px 0 0;
  552. color: #aab;
  553. font-size: 1.8em;
  554. opacity: 0.3;
  555. font-style: italic;
  556. text-align: right;
  557. }
  558. /*=== Index menu */
  559. .nav_menu {
  560. text-align: center;
  561. padding: 5px 0;
  562. }
  563. .dropdown-menu .dropdown-header .icon {
  564. filter: invert(0.6);
  565. }
  566. .dropdown-menu .dropdown-header a:hover .icon {
  567. filter: invert(0.6) invert(77%) sepia(63%) saturate(4993%) hue-rotate(177deg) brightness(88%) contrast(96%);
  568. }
  569. /*=== Feed articles */
  570. .flux {
  571. border-left: 2px solid #ecf0f1;
  572. }
  573. .flux:not(.current):hover .flux_header .title,
  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 .flux_header .date,
  602. .flux .flux_content .bottom .date {
  603. color: #666;
  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. background: #222;
  625. color: #fff;
  626. border-radius: 3px;
  627. }
  628. .content code {
  629. background: #fafafa;
  630. color: #d14;
  631. border-color: #eee;
  632. border-radius: 3px;
  633. }
  634. .content pre code {
  635. background: transparent;
  636. color: #fff;
  637. border: none;
  638. }
  639. .content blockquote {
  640. margin: 0;
  641. padding: 5px 20px;
  642. background: #fafafa;
  643. display: block;
  644. color: #333;
  645. border-top: 1px solid #ddd;
  646. border-bottom: 1px solid #ddd;
  647. }
  648. .content blockquote p {
  649. margin: 0;
  650. }
  651. /*=== Notification and actualize notification */
  652. .notification {
  653. background: #ddd;
  654. color: #666;
  655. font-size: 0.9em;
  656. border: none;
  657. border-radius: 3px;
  658. text-align: center;
  659. font-weight: bold;
  660. vertical-align: middle;
  661. }
  662. .notification.good {
  663. background: #1abc9c;
  664. color: #fff;
  665. }
  666. .notification.bad {
  667. background: #e74c3c;
  668. color: #fff;
  669. }
  670. .notification a {
  671. color: #000;
  672. }
  673. .notification a.close {
  674. border-radius: 0 3px 3px 0;
  675. }
  676. .notification.good a.close:hover {
  677. background: #16a085;
  678. }
  679. .notification.bad a.close:hover {
  680. background: #c0392b;
  681. }
  682. /*=== "Load more" part */
  683. #bigMarkAsRead {
  684. text-align: center;
  685. text-decoration: none;
  686. background: #ecf0f1;
  687. }
  688. #bigMarkAsRead:hover {
  689. background: #34495e;
  690. color: #fff;
  691. }
  692. /*=== Navigation menu (for articles) */
  693. #nav_entries {
  694. background: #34495e;
  695. }
  696. /*=== READER VIEW */
  697. /*================*/
  698. #stream.reader .flux {
  699. background: #fafafa;
  700. color: #34495e;
  701. border: none;
  702. }
  703. #stream.reader .flux .content {
  704. background-color: #fff;
  705. border-color: #ecf0f1;
  706. }
  707. #stream.reader .flux .author {
  708. color: #999;
  709. }
  710. /*=== GLOBAL VIEW */
  711. /*================*/
  712. .box.category .box-title .title {
  713. font-weight: normal;
  714. text-decoration: none;
  715. text-align: left;
  716. }
  717. .box.category:not([data-unread="0"]) .box-title {
  718. background: #3498db;
  719. }
  720. .box.category:not([data-unread="0"]) .box-title:active {
  721. background: #2980b9;
  722. }
  723. .box.category:not([data-unread="0"]) .box-title .title {
  724. font-weight: bold;
  725. color: #fff;
  726. }
  727. .box.category .title:not([data-unread="0"])::after {
  728. background: none;
  729. border: 0;
  730. position: absolute;
  731. top: 5px; right: 10px;
  732. font-weight: bold;
  733. box-shadow: none;
  734. text-shadow: none;
  735. }
  736. /*=== DIVERS */
  737. /*===========*/
  738. .aside.aside_feed .nav-form input,
  739. .aside.aside_feed .nav-form select {
  740. width: 140px;
  741. }
  742. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  743. right: -20px;
  744. }
  745. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  746. right: 33px;
  747. }
  748. /*=== STATISTICS */
  749. /*===============*/
  750. .stat {
  751. margin: 10px 0 20px;
  752. }
  753. .stat th,
  754. .stat td,
  755. .stat tr {
  756. border: none;
  757. }
  758. .stat > table td,
  759. .stat > table th {
  760. border-bottom: 1px solid #ddd;
  761. }
  762. /*=== MOBILE */
  763. /*===========*/
  764. @media (max-width: 840px) {
  765. .form-group .group-name {
  766. padding-bottom: 0;
  767. }
  768. .aside {
  769. transition: width 200ms linear;
  770. }
  771. .aside .toggle_aside,
  772. #overlay .close,
  773. .dropdown-menu .toggle_aside {
  774. background: #2c3e50;
  775. }
  776. .aside.aside_feed {
  777. padding: 0;
  778. }
  779. .nav_menu .btn {
  780. margin: 5px 10px;
  781. padding: 3px 5px;
  782. min-height: 0;
  783. }
  784. .nav_menu .stick {
  785. margin: 0 10px;
  786. }
  787. .nav_menu .stick .btn {
  788. margin: 5px 0;
  789. }
  790. .nav_menu .search {
  791. display: inline-block;
  792. max-width: 97%;
  793. }
  794. .nav_menu .search input {
  795. padding: 3px 5px;
  796. max-width: 97%;
  797. width: 90px;
  798. }
  799. .nav_menu .search input:focus {
  800. width: 400px;
  801. }
  802. .dropdown-target:target ~ .dropdown-toggle::after {
  803. background-color: #fafafa;
  804. border-top: 1px solid #95a5a6;
  805. border-left: 1px solid #95a5a6;
  806. }
  807. .dropdown-target:target ~ .btn.dropdown-toggle::after {
  808. bottom: -19px;
  809. }
  810. .day .name {
  811. font-size: 1.1rem;
  812. }
  813. .notification {
  814. border-radius: 0;
  815. }
  816. .notification a.close {
  817. background: transparent;
  818. display: block;
  819. left: 0;
  820. }
  821. .notification a.close:hover {
  822. opacity: 0.5;
  823. }
  824. .notification a.close .icon {
  825. display: none;
  826. }
  827. .post {
  828. padding-left: 15px;
  829. padding-right: 15px;
  830. }
  831. #close-slider.active {
  832. background: #2c3e50;
  833. }
  834. }