flat.rtl.css 16 KB

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