swage.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200
  1. input,
  2. select, textarea {
  3. min-height: 25px;
  4. margin-top: 4px;
  5. line-height: 29px;
  6. vertical-align: middle;
  7. background: #fcfcfc;
  8. border: 2px solid #e3e3e3;
  9. padding-left: 8px;
  10. }
  11. input:invalid,
  12. select:invalid {
  13. padding-left: 5px;
  14. color: #b0425b;
  15. border-left-color: #b0425b;
  16. border-left-width: 5px;
  17. box-shadow: none;
  18. }
  19. .nav-list .item, .nav-list .nav-header {
  20. height: 2.5em;
  21. line-height: 2.5em;
  22. font-size: 0.9rem;
  23. }
  24. .dropdown-menu > .item > a,
  25. .dropdown-menu > .item > span,
  26. .dropdown-menu > .item > .as-link,
  27. .dropdown-menu > .item button, .dropdown-menu > .item {
  28. padding: 0 22px;
  29. color: #fcfcfc;
  30. font-size: 0.8rem;
  31. line-height: 2.5em;
  32. }
  33. .flux::after, .form-group::after {
  34. content: "";
  35. display: block;
  36. clear: both;
  37. }
  38. #nav_entries, .notification, #new-article, .aside, .header > .item.title, .stick.configure-feeds {
  39. width: 231px;
  40. }
  41. html,
  42. body {
  43. color: black;
  44. font-family: Helvetica, Arial, sans-serif;
  45. }
  46. a {
  47. color: #00488b;
  48. outline: none;
  49. }
  50. a.btn {
  51. min-height: 25px;
  52. line-height: 25px;
  53. text-decoration: none;
  54. }
  55. a.btn .icon {
  56. filter: brightness(3);
  57. }
  58. a#btn-subscription {
  59. width: 76%;
  60. }
  61. a#btn-add {
  62. width: 5%;
  63. }
  64. img.icon:hover {
  65. background: none;
  66. }
  67. sup {
  68. top: -0.3em;
  69. }
  70. legend {
  71. margin: 20px 0 5px;
  72. padding: 5px 20px;
  73. background: #22303d;
  74. display: inline-block;
  75. width: auto;
  76. color: #fcfcfc;
  77. font-size: 1.4em;
  78. clear: both;
  79. }
  80. label {
  81. min-height: 25px;
  82. }
  83. textarea {
  84. width: 360px;
  85. height: 100px;
  86. }
  87. textarea:focus {
  88. border-color: #00488b;
  89. }
  90. input:focus,
  91. select:focus {
  92. border-color: #00488b;
  93. }
  94. input:disabled,
  95. select:disabled {
  96. background: #fcfcfc;
  97. }
  98. select {
  99. padding-top: 7px;
  100. padding-bottom: 8px;
  101. }
  102. input.extend {
  103. transition: width 200ms linear;
  104. }
  105. option {
  106. padding: 0 0.5em;
  107. }
  108. table {
  109. border-collapse: collapse;
  110. }
  111. tr,
  112. td,
  113. th {
  114. padding: 0.5em;
  115. border: 1px solid #e3e3e3;
  116. }
  117. th {
  118. background: #fcfcfc;
  119. }
  120. form td,
  121. form th {
  122. font-weight: normal;
  123. text-align: center;
  124. }
  125. @supports (scrollbar-width: thin) {
  126. #sidebar,
  127. .scrollbar-thin {
  128. scrollbar-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  129. scrollbar-width: thin;
  130. }
  131. #sidebar:hover,
  132. .scrollbar-thin:hover {
  133. scrollbar-color: rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.2);
  134. }
  135. #slider.scrollbar-thin {
  136. scrollbar-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.05);
  137. }
  138. #slider.scrollbar-thin:hover {
  139. scrollbar-color: rgba(0, 0, 0, 0.4) rgba(0, 0, 0, 0.1);
  140. }
  141. }
  142. @supports not (scrollbar-width: thin) {
  143. #sidebar::-webkit-scrollbar,
  144. .scrollbar-thin::-webkit-scrollbar {
  145. background: rgba(255, 255, 255, 0);
  146. width: 8px;
  147. }
  148. #sidebar::-webkit-scrollbar-thumb,
  149. .scrollbar-thin::-webkit-scrollbar-thumb {
  150. background: rgba(255, 255, 255, 0);
  151. display: unset;
  152. border-radius: 5px;
  153. }
  154. #sidebar:hover::-webkit-scrollbar-thumb,
  155. .scrollbar-thin:hover::-webkit-scrollbar-thumb {
  156. background: rgba(255, 255, 255, 0.5);
  157. }
  158. #slider.scrollbar-thin::-webkit-scrollbar {
  159. background: rgba(0, 0, 0, 0.05);
  160. }
  161. #slider.scrollbar-thin::-webkit-scrollbar-thumb {
  162. background: rgba(0, 0, 0, 0.1);
  163. }
  164. #slider.scrollbar-thin:hover::-webkit-scrollbar-thumb {
  165. background: rgba(0, 0, 0, 0.3);
  166. }
  167. }
  168. .category .title.error::before {
  169. display: inline-block;
  170. padding-right: 7px;
  171. width: 16px;
  172. content: url(../Swage/icons/error.svg);
  173. }
  174. .form-group {
  175. padding: 5px;
  176. border: 1px solid transparent;
  177. }
  178. .form-group:hover {
  179. background: #fcfcfc;
  180. border: 1px solid #fcfcfc;
  181. }
  182. .form-group.form-actions {
  183. margin: 15px 0 25px;
  184. padding: 5px 0;
  185. background: #e3e3e3;
  186. border-top: 3px solid #e3e3e3;
  187. }
  188. .form-group.form-actions .btn {
  189. margin: 0 10px;
  190. }
  191. .form-group .group-name {
  192. padding: 10px 0;
  193. text-align: right;
  194. }
  195. .form-group .group-controls {
  196. min-height: 25px;
  197. padding: 5px 0;
  198. }
  199. .form-group .group-controls .control {
  200. line-height: 2em;
  201. }
  202. .stick select {
  203. margin-top: 0;
  204. }
  205. .btn {
  206. margin: 0;
  207. padding: 5px 10px;
  208. background: #0062be;
  209. display: inline-block;
  210. color: #fcfcfc;
  211. font-size: 0.9rem;
  212. border: none;
  213. min-height: 35px;
  214. min-width: 15px;
  215. vertical-align: middle;
  216. cursor: pointer;
  217. overflow: hidden;
  218. }
  219. .btn.active, .btn:active, .btn:hover {
  220. background: #00488b;
  221. text-decoration: none;
  222. }
  223. .btn .icon {
  224. filter: brightness(3);
  225. }
  226. .btn-important, .btn-attention {
  227. font-weight: normal;
  228. background: #fa8052;
  229. color: #fcfcfc;
  230. }
  231. .btn-important:hover,
  232. .btn-important :active, .btn-attention:hover,
  233. .btn-attention :active {
  234. background: #f95c20 !important;
  235. }
  236. .manage-list .configure .icon {
  237. filter: brightness(0.4);
  238. vertical-align: sub;
  239. }
  240. .manage-list .configure:hover {
  241. filter: invert(56%) sepia(87%) saturate(1185%) hue-rotate(327deg) brightness(104%) contrast(96%);
  242. }
  243. .switch.active {
  244. background-color: #0062be;
  245. }
  246. .switch.active:hover {
  247. background-image: url("./icons/disabled-light.svg");
  248. }
  249. .nav-list .nav-header {
  250. padding: 0 1rem;
  251. font-weight: bold;
  252. background: #22303d;
  253. color: #fcfcfc;
  254. cursor: default;
  255. }
  256. .nav-list .item a:hover {
  257. background: #00488b;
  258. color: #fcfcfc;
  259. }
  260. .nav-list .item.active {
  261. background: #00488b;
  262. color: #fcfcfc;
  263. }
  264. .nav-list .item.active a {
  265. color: #fcfcfc;
  266. }
  267. .nav-list .item.active.empty a,
  268. .nav-list .item.active .error a {
  269. color: #fcfcfc;
  270. }
  271. .nav-list .item.active.empty a {
  272. background: #fa8052;
  273. }
  274. .nav-list .item.active.error a {
  275. background: #c46178;
  276. }
  277. .nav-list .item > a {
  278. padding: 0 1.5rem;
  279. }
  280. .nav-list .item.empty a {
  281. color: #fa8052;
  282. }
  283. .nav-list .item.error a {
  284. color: #c46178;
  285. }
  286. .nav-list .item .icon {
  287. filter: brightness(3);
  288. }
  289. .nav-list .nav-form {
  290. padding: 3px;
  291. text-align: center;
  292. }
  293. .nav-list a:hover {
  294. text-decoration: none;
  295. }
  296. .dropdown-menu {
  297. padding: 0.5rem 0 1rem 0;
  298. font-size: 0.8rem;
  299. text-align: left;
  300. border: none;
  301. background-color: #00488b;
  302. }
  303. .dropdown-menu .dropdown-header {
  304. cursor: default;
  305. padding: 0.5rem 10px 0.5rem 10px;
  306. font-weight: bold;
  307. color: #fcfcfc;
  308. }
  309. .dropdown-menu .dropdown-header a {
  310. padding: 0 5px;
  311. position: absolute;
  312. right: 5px;
  313. }
  314. .dropdown-menu .dropdown-header a:hover {
  315. background-color: #0062be;
  316. }
  317. .dropdown-menu::after {
  318. content: none;
  319. }
  320. .dropdown-menu > .item {
  321. padding: 0;
  322. margin-left: 10px;
  323. }
  324. .dropdown-menu > .item > a {
  325. min-width: initial;
  326. white-space: nowrap;
  327. }
  328. .dropdown-menu > .item > a:hover,
  329. .dropdown-menu > .item > button:hover {
  330. background: #0062be;
  331. color: #fcfcfc;
  332. }
  333. .dropdown-menu > .item[aria-checked=true] > a::before {
  334. font-weight: bold;
  335. margin: 0 0 0 -14px;
  336. }
  337. .dropdown-menu .input select,
  338. .dropdown-menu .input input {
  339. margin: 0 auto 5px;
  340. padding: 2px 5px;
  341. }
  342. .labels .dropdown-menu,
  343. .tags .dropdown-menu,
  344. .share .dropdown-menu {
  345. right: auto;
  346. }
  347. .item ~ .dropdown-header,
  348. .item.separator {
  349. border-top-color: #e3e3e3;
  350. cursor: default;
  351. }
  352. .alert {
  353. margin: 5px auto;
  354. padding: 10px 15px;
  355. background: #fcfcfc;
  356. color: #969696;
  357. font-size: 0.9em;
  358. border: none;
  359. text-shadow: 0 0 1px #fcfcfc;
  360. }
  361. .alert > a {
  362. color: inherit;
  363. text-decoration: underline;
  364. }
  365. .alert-head {
  366. font-size: 1.15em;
  367. }
  368. .alert-warn,
  369. .alert-success,
  370. .alert-error {
  371. border: none;
  372. }
  373. .alert-warn {
  374. background: #fcfcfc;
  375. color: #fa8052;
  376. }
  377. .alert-success {
  378. background: #fcfcfc;
  379. color: #5eaabf;
  380. }
  381. .alert-error {
  382. background: #fcfcfc;
  383. color: #b0425b;
  384. }
  385. .pagination {
  386. background: #e3e3e3;
  387. color: #181621;
  388. }
  389. .pagination .item a {
  390. color: #181621;
  391. }
  392. #load_more.loading,
  393. #load_more.loading:hover {
  394. background: url(loader.gif) center center no-repeat #22303d;
  395. }
  396. .content {
  397. padding: 20px 10px;
  398. }
  399. .content hr {
  400. margin: 30px 10px;
  401. background: #e3e3e3;
  402. height: 1px;
  403. border: 0;
  404. box-shadow: 0 2px 5px #e3e3e3;
  405. }
  406. .content pre {
  407. margin: 10px auto;
  408. padding: 10px 20px;
  409. overflow: auto;
  410. background: #181621;
  411. color: #fcfcfc;
  412. font-size: 0.9rem;
  413. }
  414. .content pre code {
  415. background: transparent;
  416. color: #fcfcfc;
  417. border: none;
  418. }
  419. .content code {
  420. padding: 2px 5px;
  421. background: #fcfcfc;
  422. color: #b0425b;
  423. border: 1px solid #fcfcfc;
  424. }
  425. .content blockquote {
  426. margin: 0;
  427. padding: 5px 20px;
  428. background: #fcfcfc;
  429. display: block;
  430. color: #969696;
  431. border-top: 1px solid #e3e3e3;
  432. border-bottom: 1px solid #e3e3e3;
  433. }
  434. .content blockquote p {
  435. margin: 0;
  436. }
  437. .content > h1.title > a {
  438. color: #181621;
  439. }
  440. .box {
  441. border: 1px solid #e3e3e3;
  442. }
  443. .box .box-title {
  444. margin: 0;
  445. padding: 7px 10px;
  446. background: #22303d;
  447. color: #fcfcfc;
  448. border-bottom: 1px solid #e3e3e3;
  449. }
  450. .box .box-title a {
  451. color: #fcfcfc;
  452. }
  453. .box .box-title .configure {
  454. margin-right: 4px;
  455. }
  456. .box .box-title .configure .icon:hover {
  457. filter: invert(56%) sepia(87%) saturate(1185%) hue-rotate(327deg) brightness(104%) contrast(96%);
  458. }
  459. .box .box-content {
  460. padding-left: 30px;
  461. max-height: 260px;
  462. }
  463. .box .box-content .item {
  464. padding: 0 10px;
  465. font-size: 0.9rem;
  466. line-height: 2.5em;
  467. }
  468. .box .box-content .item .configure .icon {
  469. vertical-align: middle;
  470. filter: brightness(0.4);
  471. }
  472. .box .box-content .item .configure .icon:hover {
  473. filter: invert(56%) sepia(87%) saturate(1185%) hue-rotate(327deg) brightness(104%) contrast(96%);
  474. }
  475. .box.category .box-title .title {
  476. font-weight: normal;
  477. text-decoration: none;
  478. text-align: left;
  479. }
  480. .box.category:not([data-unread="0"]) .box-title {
  481. background: #0062be;
  482. }
  483. .box.category:not([data-unread="0"]) .box-title:active {
  484. background: #00488b;
  485. }
  486. .box.category:not([data-unread="0"]) .box-title .title {
  487. font-weight: bold;
  488. color: #fcfcfc;
  489. }
  490. .box.category .title:not([data-unread="0"])::after {
  491. background: none;
  492. border: 0;
  493. box-shadow: none;
  494. position: absolute;
  495. top: 5px;
  496. right: 10px;
  497. font-weight: bold;
  498. text-shadow: none;
  499. }
  500. .box.visible-semi {
  501. border-style: solid;
  502. }
  503. .tree {
  504. margin: 10px 0;
  505. }
  506. .aside_feed .tree-folder-title {
  507. padding: 0.3rem 0.75rem;
  508. background: #22303d;
  509. font-size: 1rem;
  510. position: relative;
  511. }
  512. .aside_feed .tree-folder-title .title {
  513. background: inherit;
  514. color: #fcfcfc;
  515. }
  516. .aside_feed .tree-folder-title .title:hover {
  517. text-decoration: none;
  518. }
  519. .tree-folder-items {
  520. background: #22303d;
  521. }
  522. .tree-folder-items > .item {
  523. padding: 0 10px;
  524. line-height: 2.5rem;
  525. font-size: 0.8rem;
  526. }
  527. .tree-folder-items > .item.active {
  528. background: #00488b;
  529. }
  530. .tree-folder-items > .item > a {
  531. text-decoration: none;
  532. color: #fcfcfc;
  533. }
  534. @supports (scrollbar-width: thin) {
  535. #sidebar {
  536. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0);
  537. }
  538. #sidebar:hover {
  539. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0);
  540. }
  541. }
  542. @supports not (scrollbar-width: thin) {
  543. #sidebar::-webkit-scrollbar-thumb {
  544. background: rgba(255, 255, 255, 0.1);
  545. }
  546. #sidebar:hover::-webkit-scrollbar-thumb {
  547. background: rgba(255, 255, 255, 0.3);
  548. }
  549. }
  550. .header {
  551. height: auto;
  552. }
  553. .header > .item {
  554. vertical-align: middle;
  555. }
  556. .header > .item.title {
  557. position: absolute;
  558. text-align: center;
  559. }
  560. .header > .item.title .logo {
  561. display: inline-block;
  562. height: 26px;
  563. vertical-align: top;
  564. position: relative;
  565. top: 5px;
  566. filter: grayscale(100%) brightness(100);
  567. }
  568. .header .item.search input:focus {
  569. width: 350px;
  570. }
  571. .header .item.search {
  572. display: none;
  573. }
  574. .header .item.configure {
  575. position: fixed;
  576. right: 0;
  577. z-index: 95;
  578. width: 35px;
  579. text-align: center;
  580. line-height: 0.8rem;
  581. }
  582. .header .item.configure > .icon {
  583. filter: brightness(3);
  584. margin-right: 5px;
  585. margin-top: 3px;
  586. }
  587. .header .item.configure .dropdown .dropdown-menu {
  588. max-height: calc(100vh - 45px);
  589. overflow: auto;
  590. }
  591. .header .item.configure .dropdown .dropdown-menu .icon {
  592. filter: brightness(3);
  593. }
  594. .aside {
  595. padding: 35px 0;
  596. background: #22303d;
  597. }
  598. .aside.aside_feed .tree {
  599. margin: 0 0 50px;
  600. }
  601. .aside.aside_feed .tree-folder .tree-folder-title:hover,
  602. .aside.aside_feed .tree-folder .item.feed:hover {
  603. background-color: #00488b;
  604. }
  605. .aside.aside_feed .nav-form input,
  606. .aside.aside_feed .nav-form select {
  607. width: 140px;
  608. }
  609. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  610. right: -20px;
  611. }
  612. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  613. right: 33px;
  614. }
  615. .aside_feed .category .title:not([data-unread="0"])::after {
  616. margin: 0.5rem 0 0 0;
  617. background-color: #00488b;
  618. color: #fcfcfc;
  619. }
  620. .aside_feed .feed .item-title:not([data-unread="0"])::after {
  621. background-color: #0062be;
  622. color: #fcfcfc;
  623. }
  624. .aside_feed .tree-folder-items .dropdown-menu::after {
  625. left: 2px;
  626. }
  627. .aside_feed .about {
  628. padding: 1rem;
  629. display: block;
  630. text-align: center;
  631. font-size: 0.8em;
  632. font-style: italic;
  633. }
  634. .reader .aside .toggle_aside {
  635. background: #22303d;
  636. }
  637. .reader .aside .toggle_aside .icon {
  638. filter: brightness(3);
  639. }
  640. .reader .aside .toggle_aside:hover {
  641. background-color: #0062be;
  642. }
  643. .post {
  644. padding: 10px 50px;
  645. font-size: 0.9em;
  646. }
  647. .post input.long {
  648. height: 33px;
  649. margin-top: 0px;
  650. }
  651. .post form {
  652. margin: 10px 0;
  653. }
  654. .post.content {
  655. max-width: 550px;
  656. }
  657. .prompt input {
  658. margin: 5px auto;
  659. }
  660. #global {
  661. height: 100vh;
  662. }
  663. #new-article {
  664. background: #0062be;
  665. font-size: 1em;
  666. text-align: center;
  667. position: fixed;
  668. bottom: 48px;
  669. z-index: 900;
  670. left: 0;
  671. line-height: 1.5em;
  672. }
  673. #new-article > a {
  674. padding: 1rem;
  675. line-height: 1.5em;
  676. font-weight: bold;
  677. color: #fcfcfc;
  678. }
  679. #new-article > a:hover {
  680. text-decoration: none;
  681. background: #00488b;
  682. }
  683. .day {
  684. padding: 0 10px;
  685. font-weight: bold;
  686. line-height: 3em;
  687. text-align: center;
  688. }
  689. .day .name {
  690. display: none;
  691. }
  692. .nav a {
  693. color: #fcfcfc;
  694. }
  695. .nav_menu {
  696. width: 100%;
  697. font-size: 0;
  698. background-color: #0062be;
  699. position: sticky;
  700. top: 0;
  701. z-index: 90;
  702. }
  703. .nav_menu .item.search {
  704. display: inline-block;
  705. position: absolute;
  706. right: 40px;
  707. }
  708. .nav_menu .item.search input {
  709. border-width: 0;
  710. line-height: 25px;
  711. }
  712. .nav_menu #toggle-unread .icon,
  713. .nav_menu #toggle-starred .icon {
  714. filter: brightness(1);
  715. }
  716. .flux {
  717. padding-right: 10px;
  718. background: #fcfcfc;
  719. }
  720. .flux::after {
  721. margin: 0 auto;
  722. width: 90%;
  723. border-top: 1px solid #e3e3e3;
  724. }
  725. .flux:hover,
  726. .flux .current {
  727. background: #fff;
  728. }
  729. .flux:hover:not(.current):hover .item.title,
  730. .flux .current:not(.current):hover .item.title {
  731. background: #fff;
  732. top: 0.15rem;
  733. }
  734. .flux.favorite:not(.current) {
  735. background: #fff6da;
  736. }
  737. .flux.favorite:not(.current):hover .item.title {
  738. background: #fff6da;
  739. }
  740. .flux.not_read:not(.current) {
  741. background: #fff3ed;
  742. }
  743. .flux.not_read:not(.current):hover .item.title {
  744. background: #fff3ed;
  745. }
  746. .flux .item.date {
  747. color: #969696;
  748. font-size: 0.7rem;
  749. }
  750. .flux .bottom {
  751. font-size: 0.8rem;
  752. text-align: center;
  753. }
  754. .flux label {
  755. color: #fcfcfc;
  756. cursor: pointer;
  757. }
  758. .flux_header {
  759. font-size: 0.8rem;
  760. cursor: pointer;
  761. }
  762. .flux_header .title {
  763. font-size: 0.9rem;
  764. }
  765. .notification {
  766. padding: 10px 0;
  767. background: #e3e3e3;
  768. height: auto;
  769. color: #969696;
  770. font-size: 1em;
  771. border: none;
  772. text-align: center;
  773. font-weight: bold;
  774. vertical-align: middle;
  775. position: fixed;
  776. bottom: 48px;
  777. left: 0;
  778. top: auto;
  779. }
  780. .notification.good, .notification.bad {
  781. color: #fcfcfc;
  782. }
  783. .notification.good {
  784. background: #5eaabf;
  785. }
  786. .notification.good a.close:hover {
  787. background: #5eaabf;
  788. }
  789. .notification.bad {
  790. background: #c46178;
  791. }
  792. .notification.bad a.close:hover {
  793. background: #c46178;
  794. }
  795. .notification#actualizeProgress {
  796. line-height: 2em;
  797. }
  798. .notification a.close {
  799. display: none;
  800. }
  801. #bigMarkAsRead {
  802. text-align: center;
  803. text-decoration: none;
  804. background: #e3e3e3;
  805. }
  806. #bigMarkAsRead:hover {
  807. background: #22303d;
  808. color: #fcfcfc;
  809. }
  810. #nav_entries {
  811. margin: 0;
  812. text-align: center;
  813. line-height: 3em;
  814. table-layout: fixed;
  815. background: #22303d;
  816. }
  817. .stat {
  818. margin: 10px 0 20px;
  819. }
  820. .stat th,
  821. .stat td,
  822. .stat tr {
  823. border: none;
  824. }
  825. .stat > table td,
  826. .stat > table th {
  827. border-bottom: 1px solid #e3e3e3;
  828. }
  829. #overlay {
  830. z-index: 100;
  831. }
  832. #panel {
  833. z-index: 100;
  834. }
  835. #panel .nav_menu {
  836. position: relative;
  837. }
  838. .formLogin #global,
  839. .register #global {
  840. height: 0;
  841. }
  842. .formLogin .header,
  843. .register .header {
  844. background: #0062be;
  845. height: 35px;
  846. position: relative;
  847. }
  848. .formLogin .header > .item.configure,
  849. .register .header > .item.configure {
  850. padding: 8px;
  851. width: auto;
  852. position: absolute;
  853. right: 0;
  854. white-space: nowrap;
  855. bottom: 0;
  856. }
  857. .formLogin .header > .item.configure .icon,
  858. .register .header > .item.configure .icon {
  859. filter: brightness(3);
  860. }
  861. a.signin {
  862. color: #fcfcfc;
  863. font-size: 70%;
  864. }
  865. .log-item.log-error {
  866. background: #c46178;
  867. color: #fcfcfc;
  868. }
  869. .log-item.log-warning {
  870. background: #fa8052;
  871. color: #fcfcfc;
  872. }
  873. .log-item.log-debug {
  874. background: #181621;
  875. }
  876. @media (max-width: 840px) {
  877. body:not(.formLogin, .register) .header .item.title {
  878. display: none;
  879. }
  880. .form-group .group-name {
  881. padding-bottom: 0;
  882. text-align: left;
  883. }
  884. .dropdown {
  885. position: relative;
  886. }
  887. #new-article {
  888. margin-top: 2rem;
  889. width: 100%;
  890. }
  891. .header {
  892. display: table;
  893. }
  894. .header .item {
  895. padding: 0;
  896. }
  897. .header .item.configure {
  898. padding: 0;
  899. position: fixed;
  900. right: 76px;
  901. }
  902. .header .item.configure > .icon {
  903. margin-top: 5px;
  904. }
  905. button.read_all.btn {
  906. display: none;
  907. }
  908. .flux .item.manage,
  909. .flux_header .item.website {
  910. width: 35px;
  911. text-align: center;
  912. }
  913. .flux:not(.current):hover .item.title {
  914. top: auto !important;
  915. }
  916. .aside {
  917. padding: 0;
  918. width: 0;
  919. transition: width 200ms linear;
  920. }
  921. .aside .toggle_aside {
  922. background: #22303d;
  923. }
  924. .aside .toggle_aside:hover {
  925. background-color: #0062be;
  926. }
  927. .aside .toggle_aside .icon {
  928. filter: brightness(3);
  929. }
  930. .aside.aside_feed .configure-feeds {
  931. display: flex;
  932. margin-top: 0;
  933. margin-left: auto;
  934. margin-right: auto;
  935. }
  936. .aside:target {
  937. width: 78%;
  938. z-index: 1000;
  939. }
  940. #slider .toggle_aside {
  941. background: #22303d;
  942. }
  943. #slider .toggle_aside:hover {
  944. background-color: #0062be;
  945. }
  946. #slider .toggle_aside .icon {
  947. filter: brightness(3);
  948. }
  949. .nav_menu {
  950. height: 71px;
  951. }
  952. .nav_menu .btn {
  953. margin: 0;
  954. }
  955. .nav_menu .stick {
  956. margin: 0;
  957. }
  958. .nav_menu .stick .btn {
  959. margin: 0;
  960. }
  961. .nav_menu .item.search {
  962. top: 3px;
  963. margin-left: 77px;
  964. width: calc(100% - 152px);
  965. position: relative;
  966. }
  967. .nav_menu .item.search form {
  968. display: block;
  969. }
  970. .nav_menu .item.search input {
  971. width: 100%;
  972. }
  973. #panel .close,
  974. .dropdown-menu .toggle_aside {
  975. background: #22303d;
  976. display: block;
  977. height: 50px;
  978. line-height: 50px;
  979. text-align: center;
  980. padding-right: 10px;
  981. }
  982. #panel .close:hover,
  983. .dropdown-menu .toggle_aside:hover {
  984. background-color: #0062be;
  985. }
  986. .dropdown-target:target ~ .dropdown-toggle::after,
  987. .dropdown-target:target ~ .dropdown-toggle.btn::after {
  988. display: none;
  989. }
  990. .share .dropdown-menu {
  991. right: 3%;
  992. left: auto;
  993. }
  994. .day .name {
  995. font-size: 1.1rem;
  996. }
  997. .notification {
  998. width: 100%;
  999. }
  1000. .notification a.close {
  1001. background: transparent;
  1002. display: block;
  1003. left: 0;
  1004. }
  1005. .notification a.close:hover {
  1006. opacity: 0.5;
  1007. }
  1008. .notification a.close .icon {
  1009. display: none;
  1010. }
  1011. #nav_entries {
  1012. width: 100% !important;
  1013. }
  1014. .post {
  1015. padding-left: 15px;
  1016. padding-right: 15px;
  1017. }
  1018. div#stream {
  1019. margin-top: 0px;
  1020. }
  1021. a.btn.toggle_aside {
  1022. position: absolute;
  1023. top: 0;
  1024. }
  1025. form#mark-read-menu,
  1026. a#actualize,
  1027. a#toggle-order,
  1028. div#nav_menu_actions,
  1029. div#nav_menu_views {
  1030. position: absolute;
  1031. }
  1032. form#mark-read-menu {
  1033. right: 38px;
  1034. top: 0;
  1035. }
  1036. a#actualize,
  1037. a#toggle-order {
  1038. right: 0;
  1039. }
  1040. a#actualize {
  1041. top: 0;
  1042. }
  1043. a#toggle-order,
  1044. div#nav_menu_actions,
  1045. div#nav_menu_views {
  1046. top: 36px;
  1047. }
  1048. div#nav_menu_actions {
  1049. left: 0px;
  1050. }
  1051. div#nav_menu_views {
  1052. right: 50px;
  1053. }
  1054. }
  1055. @media (max-width: 410px) {
  1056. .nav_menu .stick {
  1057. margin: 0;
  1058. }
  1059. }
  1060. @media (max-width: 374px) {
  1061. #nav_menu_views {
  1062. display: none;
  1063. }
  1064. }
  1065. button.as-link {
  1066. outline: none;
  1067. }
  1068. .dropdown-target:target ~ .btn.dropdown-toggle {
  1069. background: #00488b;
  1070. }
  1071. .tree-folder.active .tree-folder-title {
  1072. background: #00488b;
  1073. font-weight: bold;
  1074. }
  1075. .feed.item.empty {
  1076. color: #fa8052;
  1077. }
  1078. .feed.item.empty.active {
  1079. background: #fa8052;
  1080. color: #fcfcfc;
  1081. }
  1082. .feed.item.empty.active > a {
  1083. color: #fcfcfc;
  1084. }
  1085. .feed.item.empty > a {
  1086. color: #fa8052;
  1087. }
  1088. .feed.item.error {
  1089. color: #c46178;
  1090. }
  1091. .feed.item.error.active {
  1092. background: #c46178;
  1093. color: #fcfcfc;
  1094. }
  1095. .feed.item.error.active > a {
  1096. color: #fcfcfc;
  1097. }
  1098. .feed.item.error > a {
  1099. color: #c46178;
  1100. }
  1101. #stream.reader .flux {
  1102. background: #fcfcfc;
  1103. color: #22303d;
  1104. border: none;
  1105. }
  1106. #stream.reader .flux::after {
  1107. border: none;
  1108. }
  1109. #stream.reader .flux .content {
  1110. border-color: #e3e3e3;
  1111. }
  1112. #stream.reader .flux .author {
  1113. margin: 0 0 10px;
  1114. color: #969696;
  1115. font-size: 90%;
  1116. }
  1117. #nav_menu_actions ul.dropdown-menu {
  1118. left: 0;
  1119. right: auto;
  1120. }
  1121. #nav_menu_read_all ul.dropdown-menu {
  1122. right: 0;
  1123. left: auto;
  1124. }
  1125. #slider label {
  1126. min-height: initial;
  1127. }