flat.css 16 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052
  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. input, select, textarea {
  32. padding: 5px;
  33. background: #fff;
  34. color: #666;
  35. border: none;
  36. border-bottom: 3px solid #ddd;
  37. border-left-color: #ddd;
  38. border-radius: 5px;
  39. min-height: 25px;
  40. line-height: 1;
  41. }
  42. option {
  43. padding: 0 .5em;
  44. }
  45. input:focus, select:focus, textarea:focus {
  46. color: #333;
  47. border-color: #2980b9;
  48. }
  49. input:invalid, select:invalid {
  50. color: #f00;
  51. border-color: #f00;
  52. box-shadow: none;
  53. }
  54. input:disabled, select:disabled {
  55. background: #eee;
  56. }
  57. /*=== Tables */
  58. table {
  59. border-collapse: collapse;
  60. }
  61. th, td {
  62. border: 1px solid #ddd;
  63. }
  64. th {
  65. background: #f6f6f6;
  66. }
  67. .config-articleicons td,
  68. .config-articleicons th {
  69. font-weight: normal;
  70. text-align: center;
  71. }
  72. /*=== COMPONENTS */
  73. /*===============*/
  74. /*=== Forms */
  75. .form-group {
  76. padding: 5px;
  77. border: 1px solid transparent;
  78. border-radius: 3px;
  79. }
  80. .form-group::after {
  81. display: block;
  82. clear: both;
  83. }
  84. .form-group:hover {
  85. background: #fff;
  86. border: 1px solid #eee;
  87. border-radius: 3px;
  88. }
  89. .form-group.form-actions {
  90. margin: 15px 0 25px;
  91. padding: 5px 0;
  92. background-color: #e6ecedaa;
  93. border-top: 3px solid #bdc3c7;
  94. border-radius: 5px 5px 0 0;
  95. }
  96. .form-group.form-actions .btn {
  97. margin: 0 10px;
  98. }
  99. .form-group .group-name {
  100. padding: 10px 0;
  101. }
  102. .form-group .group-controls {
  103. min-height: 25px;
  104. padding: 5px 0;
  105. }
  106. .form-group .group-controls .control {
  107. line-height: 2.0em;
  108. }
  109. /*=== Buttons */
  110. .stick input,
  111. .stick .btn,
  112. .group .btn {
  113. border-radius: 0;
  114. }
  115. .stick .btn:first-child,
  116. .group .btn:first-child,
  117. .stick input:first-child {
  118. border-radius: 5px 0 0 5px;
  119. }
  120. .stick .btn:last-child,
  121. .group .btn:last-child,
  122. .stick input:last-child,
  123. .stick .dropdown:last-child > .btn,
  124. .group .dropdown:last-child > .btn {
  125. border-radius: 0 5px 5px 0;
  126. }
  127. .group > .btn:only-child,
  128. .group > .dropdown:only-child > .btn {
  129. border-radius: 5px;
  130. }
  131. .stick .btn + .btn,
  132. .group .btn + .btn,
  133. .stick .btn + input,
  134. .stick .btn + .dropdown > .btn,
  135. .group .btn + .dropdown > .btn,
  136. .stick input + .btn,
  137. .stick input + input,
  138. .stick input + .dropdown > .btn,
  139. .stick .dropdown + .btn,
  140. .group .dropdown + .btn,
  141. .stick .dropdown + input,
  142. .stick .dropdown + .dropdown > .btn,
  143. .group .dropdown + .dropdown > .btn {
  144. border-left-width: 1px;
  145. border-left-style: solid;
  146. }
  147. .btn {
  148. margin: 0;
  149. padding: 0.25rem 0.5rem;
  150. background: #3498db;
  151. color: #fff;
  152. font-size: 0.9rem;
  153. border: none;
  154. border-bottom: 3px solid #2980b9;
  155. border-left-color: #2980b9;
  156. border-radius: 5px;
  157. min-height: 25px;
  158. min-width: 15px;
  159. line-height: 25px;
  160. vertical-align: middle;
  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 .as-link:hover,
  219. .nav-list .item.active {
  220. background: #2980b9;
  221. color: #fff;
  222. }
  223. .nav-list .item.active a,
  224. .nav-list .item.active .as-link {
  225. color: #fff;
  226. }
  227. .nav-list .item > a,
  228. .nav-list .item > .as-link {
  229. padding: 0 1rem;
  230. }
  231. .nav-list a:hover {
  232. text-decoration: none;
  233. }
  234. .nav-list .nav-header {
  235. padding: 0 1rem;
  236. font-weight: bold;
  237. background: #34495e;
  238. color: #fff;
  239. }
  240. .nav-list .nav-form {
  241. padding: 3px;
  242. text-align: center;
  243. }
  244. /*=== Dropdown */
  245. .dropdown-menu {
  246. margin: 0.5rem 0 0;
  247. padding: 0.5rem 0 0.25rem 0;
  248. background: #fafafa;
  249. font-size: 0.8rem;
  250. border: 1px solid #95a5a6;
  251. border-radius: 3px;
  252. text-align: left;
  253. }
  254. .dropdown-menu::after {
  255. border-color: #95a5a6;
  256. right: 12px;
  257. }
  258. .dropdown-header,
  259. .dropdown-section .dropdown-section-title {
  260. padding: 0 0.5rem 0.5rem;
  261. font-weight: bold;
  262. text-align: left;
  263. color: #34495e;
  264. }
  265. .dropdown-header a {
  266. position: absolute;
  267. right: 0.5rem;
  268. }
  269. .dropdown-menu .item > a,
  270. .dropdown-menu .item > span,
  271. .dropdown-menu .item > .as-link {
  272. padding: 0 22px;
  273. line-height: 2.5em;
  274. font-size: inherit;
  275. }
  276. .dropdown-menu .dropdown-section .item > a,
  277. .dropdown-menu .dropdown-section .item > span,
  278. .dropdown-menu .dropdown-section .item > .as-link {
  279. padding-left: 2rem;
  280. }
  281. .dropdown-menu .dropdown-section .item:last-child {
  282. margin-bottom: 0.5rem;
  283. }
  284. .dropdown-menu .item > a:focus,
  285. .dropdown-menu .item > a:hover,
  286. .dropdown-menu .item > button:focus:not([disabled]),
  287. .dropdown-menu .item > button:hover:not([disabled]),
  288. .dropdown-menu .item > label:focus:not(.noHover),
  289. .dropdown-menu .item > label:hover:not(.noHover) {
  290. background: #2980b9;
  291. color: #fff;
  292. }
  293. .dropdown-menu > .item a:hover .icon,
  294. .nav-list.aside .item a:hover .icon {
  295. filter: brightness(3);
  296. }
  297. .dropdown-menu > .item[aria-checked="true"] > a::before {
  298. font-weight: bold;
  299. margin: 0 0 0 -14px;
  300. }
  301. .dropdown-menu .input select,
  302. .dropdown-menu .input input {
  303. margin: 0 auto 5px;
  304. padding: 2px 5px;
  305. border-radius: 3px;
  306. }
  307. .item ~ .dropdown-header,
  308. .dropdown-section ~ .dropdown-section,
  309. .item.separator {
  310. border-top-color: #ddd;
  311. }
  312. /*=== Alerts */
  313. .alert {
  314. background: #f4f4f4;
  315. color: #aaa;
  316. font-size: 0.9em;
  317. border: 1px solid #ccc;
  318. border-right: 1px solid #aaa;
  319. border-bottom: 1px solid #aaa;
  320. border-radius: 5px;
  321. text-shadow: 0 0 1px #eee;
  322. }
  323. .alert-head {
  324. font-size: 1.15em;
  325. }
  326. .alert > a {
  327. text-decoration: underline;
  328. color: inherit;
  329. }
  330. .alert-warn {
  331. background: #ffe;
  332. color: #c95;
  333. border: 1px solid #eeb;
  334. }
  335. .alert-success {
  336. background: #dfd;
  337. color: #484;
  338. border: 1px solid #cec;
  339. }
  340. .alert-error {
  341. background: #fdd;
  342. color: #844;
  343. border: 1px solid #ecc;
  344. }
  345. /*=== Pagination */
  346. .pagination {
  347. background: #ecf0f1;
  348. color: #000;
  349. }
  350. .pagination .item a {
  351. color: #000;
  352. }
  353. #load_more.loading,
  354. #load_more.loading:hover {
  355. background: url("loader.gif") center center no-repeat #34495e;
  356. }
  357. /*=== Boxes */
  358. .box {
  359. border: 1px solid #ddd;
  360. border-radius: 5px;
  361. }
  362. .box .box-title {
  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. /*=== Transition indication, e.g. day */
  549. .transition {
  550. padding: 0 10px;
  551. font-weight: bold;
  552. line-height: 3em;
  553. border-left: 2px solid #ecf0f1;
  554. }
  555. .transition .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. .nav_menu #nav_menu_toggle_aside {
  569. position: static;
  570. }
  571. .dropdown-menu .dropdown-header .icon {
  572. filter: invert(0.6);
  573. }
  574. .dropdown-menu .dropdown-header a:hover .icon {
  575. filter: invert(0.6) invert(77%) sepia(63%) saturate(4993%) hue-rotate(177deg) brightness(88%) contrast(96%);
  576. }
  577. /*=== Feed articles */
  578. .flux {
  579. border-left: 2px solid #ecf0f1;
  580. }
  581. .flux:not(.current):hover .flux_header .title,
  582. .flux .flux_header:hover {
  583. background: #fff;
  584. }
  585. .flux.current {
  586. background: #fff;
  587. border-left-color: #3498db;
  588. }
  589. .flux.not_read {
  590. border-left-color: #ff5300;
  591. }
  592. .flux.not_read:not(.current) {
  593. background: #fff3ed;
  594. }
  595. .flux.favorite {
  596. border-left-color: #ffc300;
  597. }
  598. .flux.favorite:not(.current) {
  599. background: #fff6da;
  600. }
  601. .flux_header {
  602. font-size: 0.8rem;
  603. cursor: pointer;
  604. border-top: 1px solid #ecf0f1;
  605. }
  606. .flux_header .title {
  607. font-size: 0.9rem;
  608. }
  609. .flux .flux_header .date,
  610. .flux .flux_content .bottom .date {
  611. color: #666;
  612. }
  613. .flux .bottom {
  614. font-size: 0.8rem;
  615. text-align: center;
  616. }
  617. /* stylelint-disable-next-line no-duplicate-selectors */
  618. .flux.current {
  619. border-left-width: 5px;
  620. border-left-style: double;
  621. }
  622. .flux.current > .flux_header {
  623. background: linear-gradient(to right, transparent 0, transparent 3px, #fff 3px);
  624. margin-left: -3px; /* Compensate increased border-left-width */
  625. }
  626. /*=== Content of feed articles */
  627. .content {
  628. padding: 20px 10px;
  629. }
  630. .content > h1.title > a {
  631. color: #000;
  632. }
  633. .content hr {
  634. margin: 30px 10px;
  635. background: #ddd;
  636. height: 1px;
  637. border: 0;
  638. box-shadow: 0 2px 5px #ccc;
  639. }
  640. .content pre {
  641. background: #222;
  642. color: #fff;
  643. border-radius: 3px;
  644. }
  645. .content code {
  646. background: #fafafa;
  647. color: #d14;
  648. border-color: #eee;
  649. border-radius: 3px;
  650. }
  651. .content pre code {
  652. background: transparent;
  653. color: #fff;
  654. border: none;
  655. }
  656. .content blockquote {
  657. margin: 0;
  658. padding: 5px 20px;
  659. background: #fafafa;
  660. display: block;
  661. color: #333;
  662. border-top: 1px solid #ddd;
  663. border-bottom: 1px solid #ddd;
  664. }
  665. .content blockquote p {
  666. margin: 0;
  667. }
  668. /*=== Notification and actualize notification */
  669. .notification {
  670. background: #ddd;
  671. color: #666;
  672. font-size: 0.9em;
  673. border: none;
  674. border-radius: 3px;
  675. text-align: center;
  676. font-weight: bold;
  677. vertical-align: middle;
  678. }
  679. .notification.good {
  680. background: #1abc9c;
  681. color: #fff;
  682. }
  683. .notification.bad {
  684. background: #e74c3c;
  685. color: #fff;
  686. }
  687. .notification a {
  688. color: #000;
  689. }
  690. .notification .close {
  691. border-radius: 0 3px 3px 0;
  692. }
  693. .notification.good .close:hover {
  694. background: #16a085;
  695. }
  696. .notification .close .icon {
  697. filter: brightness(2.5);
  698. }
  699. .notification.bad .close:hover {
  700. background: #c0392b;
  701. }
  702. .notification .close:hover .icon {
  703. filter: brightness(4);
  704. }
  705. /*=== "Load more" part */
  706. #bigMarkAsRead.big {
  707. text-align: center;
  708. text-decoration: none;
  709. background: #ecf0f1;
  710. }
  711. #bigMarkAsRead:hover {
  712. background: #34495e;
  713. color: #fff;
  714. }
  715. /*=== Navigation menu (for articles) */
  716. #nav_entries {
  717. background: #34495e;
  718. }
  719. /*=== READER VIEW */
  720. /*================*/
  721. #stream.reader .flux {
  722. background: #fafafa;
  723. color: #34495e;
  724. border: none;
  725. }
  726. #stream.reader .flux .flux_content {
  727. background-color: #fff;
  728. border-color: #ecf0f1;
  729. }
  730. #stream.reader .flux .author {
  731. color: #999;
  732. }
  733. /*=== GLOBAL VIEW */
  734. /*================*/
  735. .box.category .box-title .title {
  736. font-weight: normal;
  737. text-decoration: none;
  738. text-align: left;
  739. }
  740. .box.category:not([data-unread="0"]) .box-title {
  741. background: #3498db;
  742. }
  743. .box.category:not([data-unread="0"]) .box-title:active {
  744. background: #2980b9;
  745. }
  746. .box.category:not([data-unread="0"]) .box-title .title {
  747. font-weight: bold;
  748. color: #fff;
  749. }
  750. .box.category .title:not([data-unread="0"])::after {
  751. background: none;
  752. border: 0;
  753. position: absolute;
  754. top: 5px; right: 10px;
  755. font-weight: bold;
  756. box-shadow: none;
  757. text-shadow: none;
  758. }
  759. /*=== DIVERS */
  760. /*===========*/
  761. .aside.aside_feed .nav-form input,
  762. .aside.aside_feed .nav-form select {
  763. width: 140px;
  764. }
  765. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  766. right: -20px;
  767. }
  768. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  769. right: 33px;
  770. }
  771. /*=== STATISTICS */
  772. /*===============*/
  773. .stat {
  774. margin: 10px 0 20px;
  775. }
  776. .stat th,
  777. .stat td,
  778. .stat tr {
  779. border: none;
  780. }
  781. .stat > table td,
  782. .stat > table th {
  783. border-bottom: 1px solid #ddd;
  784. }
  785. /*=== MOBILE */
  786. /*===========*/
  787. @media (max-width: 840px) {
  788. .form-group .group-name {
  789. padding-bottom: 0;
  790. }
  791. .aside {
  792. transition: width 200ms linear;
  793. }
  794. .aside .toggle_aside,
  795. #overlay .close,
  796. .dropdown-menu .toggle_aside {
  797. background: #2c3e50;
  798. }
  799. .aside.aside_feed {
  800. padding: 0;
  801. }
  802. .nav_menu .btn {
  803. margin: 5px 10px;
  804. padding: 3px 5px;
  805. min-height: 0;
  806. }
  807. .nav_menu .stick,
  808. .nav_menu .group {
  809. margin: 0 10px;
  810. }
  811. .nav_menu .stick .btn,
  812. .nav_menu .group .btn {
  813. margin: 5px 0;
  814. }
  815. .nav_menu .stick #mark-read-menu .dropdown-toggle.btn {
  816. border-left-width: 0;
  817. border-top-left-radius: 5px;
  818. border-bottom-left-radius: 5px;
  819. }
  820. .nav_menu .search {
  821. display: inline-block;
  822. max-width: 97%;
  823. }
  824. .nav_menu .search input {
  825. padding: 3px 5px;
  826. max-width: 97%;
  827. width: 90px;
  828. }
  829. .nav_menu .search input:focus {
  830. width: 400px;
  831. }
  832. .dropdown-target:target ~ .dropdown-toggle::after {
  833. background-color: #fafafa;
  834. border-top: 1px solid #95a5a6;
  835. border-left: 1px solid #95a5a6;
  836. }
  837. .dropdown-target:target ~ .btn.dropdown-toggle::after {
  838. bottom: -19px;
  839. }
  840. .transition .name {
  841. font-size: 1.1rem;
  842. }
  843. .notification {
  844. border-radius: 0;
  845. }
  846. .notification .close {
  847. background: transparent;
  848. display: block;
  849. left: 0;
  850. }
  851. .notification .close:hover {
  852. opacity: 0.5;
  853. }
  854. .notification .close .icon {
  855. display: none;
  856. }
  857. .post {
  858. padding-left: 15px;
  859. padding-right: 15px;
  860. }
  861. #close-slider.active {
  862. background: #2c3e50;
  863. }
  864. }