flat.rtl.css 16 KB

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