flat.rtl.css 16 KB

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