base.rtl.css 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771
  1. /* stylelint-disable block-no-empty */
  2. @charset "UTF-8";
  3. /*=== GENERAL */
  4. /*============*/
  5. html, body {
  6. height: 100%;
  7. color: black;
  8. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", sans-serif;
  9. }
  10. /*=== Links */
  11. a, button.as-link {
  12. color: blue;
  13. outline: none;
  14. }
  15. /*=== Forms */
  16. legend {
  17. margin: 20px 0 5px;
  18. padding: 5px 0;
  19. font-size: 1.4em;
  20. }
  21. label {
  22. min-height: 25px;
  23. padding: 5px 0;
  24. cursor: pointer;
  25. }
  26. textarea {
  27. width: 360px;
  28. height: 100px;
  29. }
  30. input, select, textarea {
  31. padding: 7px;
  32. vertical-align: middle;
  33. }
  34. option {
  35. padding: 0 .5em;
  36. }
  37. input:focus, select:focus, textarea:focus {
  38. }
  39. input:invalid, select:invalid {
  40. }
  41. input:disabled, select:disabled {
  42. }
  43. /*=== Tables */
  44. table {
  45. border-collapse: collapse;
  46. }
  47. th, td {
  48. }
  49. th {
  50. }
  51. .config-articleicons td,
  52. .config-articleicons th {
  53. font-weight: normal;
  54. text-align: center;
  55. }
  56. /*=== COMPONENTS */
  57. /*===============*/
  58. /*=== Forms */
  59. .form-group.form-actions {
  60. padding: 5px 0;
  61. }
  62. .form-group.form-actions .btn {
  63. margin: 0 10px;
  64. }
  65. .form-group .group-name {
  66. padding: 10px 0;
  67. text-align: left;
  68. }
  69. .form-group .group-controls {
  70. min-height: 25px;
  71. padding: 5px 0;
  72. }
  73. /*=== Buttons */
  74. .stick input,
  75. .stick .btn {
  76. }
  77. .stick .btn:first-child,
  78. .stick input:first-child {
  79. }
  80. .stick .btn-important:first-child {
  81. }
  82. .stick .btn:last-child,
  83. .stick input:last-child {
  84. }
  85. .stick .btn + .btn,
  86. .stick .btn + input,
  87. .stick .btn + .dropdown > .btn,
  88. .stick input + .btn,
  89. .stick input + input,
  90. .stick input + .dropdown > .btn,
  91. .stick .dropdown + .btn,
  92. .stick .dropdown + input,
  93. .stick .dropdown + .dropdown > .btn {
  94. }
  95. .stick input + .btn {
  96. }
  97. .stick .btn + .dropdown > .btn {
  98. }
  99. .btn {
  100. margin: 0;
  101. padding: 0.25rem 0.5rem;
  102. min-height: 25px;
  103. min-width: 15px;
  104. font-size: 0.9rem;
  105. line-height: 1.7;
  106. vertical-align: middle;
  107. }
  108. .btn:hover {
  109. text-decoration: none;
  110. }
  111. .btn.active,
  112. .btn:active,
  113. .dropdown-target:target ~ .btn.dropdown-toggle {
  114. }
  115. .btn-important {
  116. font-weight: normal;
  117. }
  118. .btn-important:hover {
  119. }
  120. .btn-important:active {
  121. }
  122. .btn-attention {
  123. }
  124. .btn-attention:hover {
  125. }
  126. .btn-attention:active {
  127. }
  128. /*=== Navigation */
  129. .nav-list .nav-header,
  130. .nav-list .item {
  131. line-height: 2.5;
  132. font-size: 0.9rem;
  133. }
  134. .nav-list .item:hover {
  135. }
  136. .nav-list .item:hover a,
  137. .nav-list .item:hover .as-link {
  138. }
  139. .nav-list .item.active {
  140. }
  141. .nav-list .item.active a,
  142. .nav-list .item.active .as-link {
  143. }
  144. .nav-list .item > a,
  145. .nav-list .item > .as-link {
  146. padding: 0 10px;
  147. }
  148. .nav-list a:hover {
  149. text-decoration: none;
  150. }
  151. .nav-list .nav-header {
  152. padding: 0 10px;
  153. font-weight: bold;
  154. }
  155. .nav-list .nav-form {
  156. padding: 3px;
  157. text-align: center;
  158. }
  159. /*=== Dropdown */
  160. .dropdown-menu {
  161. margin: 5px 0 0;
  162. padding: 5px 0;
  163. font-size: 0.8rem;
  164. text-align: right;
  165. }
  166. .dropdown-menu::after {
  167. position: absolute;
  168. top: -6px;
  169. left: 13px;
  170. width: 10px;
  171. height: 10px;
  172. z-index: -10;
  173. transform: rotate(-45deg);
  174. }
  175. .dropdown-header {
  176. padding: 0 5px 5px;
  177. font-weight: bold;
  178. text-align: right;
  179. }
  180. .dropdown-menu > .item {
  181. }
  182. .dropdown-menu > .item > a,
  183. .dropdown-menu > .item > span,
  184. .dropdown-menu > .item > .as-link {
  185. padding: 0 22px;
  186. line-height: 2.5;
  187. }
  188. .dropdown-menu > .item:hover {
  189. }
  190. .dropdown-menu > .item[aria-checked="true"] > a::before {
  191. font-weight: bold;
  192. margin: 0 -14px 0 0;
  193. }
  194. .dropdown-menu > .item:hover > a {
  195. text-decoration: none;
  196. }
  197. .dropdown-menu .input select,
  198. .dropdown-menu .input input {
  199. margin: 0 auto 5px;
  200. padding: 2px 5px;
  201. }
  202. /*=== Alerts */
  203. .alert {
  204. font-size: 0.9em;
  205. }
  206. .alert-head {
  207. font-size: 1.15em;
  208. }
  209. .alert > a {
  210. text-decoration: underline;
  211. }
  212. .alert-warn {
  213. }
  214. .alert-success {
  215. }
  216. .alert-error {
  217. }
  218. /*=== Pagination */
  219. .pagination {
  220. text-align: center;
  221. font-size: 0.8em;
  222. }
  223. .content .pagination {
  224. margin: 0;
  225. padding: 0;
  226. }
  227. .pagination .item.pager-current {
  228. font-weight: bold;
  229. font-size: 1.5em;
  230. }
  231. .pagination .item a {
  232. display: block;
  233. font-style: italic;
  234. line-height: 3;
  235. text-decoration: none;
  236. }
  237. .pagination .item a:hover {
  238. }
  239. .pagination:first-child .item {
  240. }
  241. .pagination:last-child .item {
  242. }
  243. #load_more.loading,
  244. #load_more.loading:hover {
  245. font-size: 0;
  246. }
  247. /*=== Boxes */
  248. .box {
  249. }
  250. .box .box-title {
  251. }
  252. .box .box-content {
  253. }
  254. .box .box-content .item {
  255. }
  256. /*=== Tree */
  257. .tree {
  258. margin: 10px 0;
  259. }
  260. .tree-folder-title {
  261. position: relative;
  262. padding: 0 10px;
  263. line-height: 2.5;
  264. font-size: 1rem;
  265. }
  266. .tree-folder-title .title {
  267. background: inherit;
  268. }
  269. .tree-folder-title .title:hover {
  270. text-decoration: none;
  271. }
  272. .tree-folder.active .tree-folder-title {
  273. font-weight: bold;
  274. }
  275. .tree-folder.active .tree-folder-title .title {
  276. }
  277. .tree-folder-items {
  278. }
  279. .tree-folder-items > .item {
  280. font-size: 0.8rem;
  281. }
  282. .tree-folder-items > .item.active {
  283. }
  284. .tree-folder-items > .item > a {
  285. text-decoration: none;
  286. }
  287. .tree-folder-items > .item.active > a {
  288. }
  289. /*=== STRUCTURE */
  290. /*===============*/
  291. /*=== Header */
  292. .header {
  293. height: 85px;
  294. }
  295. .header > .item {
  296. vertical-align: middle;
  297. text-align: center;
  298. }
  299. .header > .item.title h1 {
  300. margin: 0.5em 0;
  301. }
  302. .header > .item.title h1 a {
  303. text-decoration: none;
  304. }
  305. .header > .item.search input {
  306. width: 350px;
  307. }
  308. /*=== Body */
  309. #global {
  310. height: calc(100% - 85px);
  311. }
  312. .aside {
  313. }
  314. .aside.aside_feed {
  315. padding: 10px 0;
  316. text-align: center;
  317. }
  318. .aside.aside_feed .tree {
  319. margin: 10px 0 50px;
  320. }
  321. /*=== Aside main page (categories) */
  322. .aside_feed .tree-folder-title > .title:not([data-unread="0"])::after {
  323. position: absolute;
  324. left: 0;
  325. margin: 10px 0;
  326. padding: 0 10px;
  327. font-size: 0.9rem;
  328. line-height: 1.5;
  329. }
  330. /*=== Aside main page (feeds) */
  331. .feed.item.empty.active {
  332. }
  333. .feed.item.error.active {
  334. }
  335. .feed.item.empty,
  336. .feed.item.empty > a {
  337. }
  338. .feed.item.error,
  339. .feed.item.error > a {
  340. }
  341. .feed.item.empty.active,
  342. .feed.item.error.active,
  343. .feed.item.empty.active > a,
  344. .feed.item.error.active > a {
  345. }
  346. .aside_feed .tree-folder-items .dropdown-menu::after {
  347. right: 2px;
  348. }
  349. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  350. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  351. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  352. border-radius: 3px;
  353. }
  354. /*=== Prompt (centered) */
  355. .prompt {
  356. text-align: center;
  357. }
  358. .prompt label {
  359. text-align: right;
  360. }
  361. .prompt form {
  362. margin: 10px auto 20px auto;
  363. width: 180px;
  364. }
  365. .prompt input {
  366. margin: 5px auto;
  367. width: 100%;
  368. }
  369. .prompt p {
  370. margin: 20px 0;
  371. }
  372. /*=== New article notification */
  373. #new-article {
  374. text-align: center;
  375. font-size: 0.9em;
  376. }
  377. #new-article > a {
  378. padding: 0.75rem;
  379. font-weight: bold;
  380. }
  381. #new-article > a:hover {
  382. text-decoration: none;
  383. }
  384. /*=== Day indication */
  385. .day {
  386. padding: 0 10px;
  387. font-weight: bold;
  388. line-height: 3;
  389. }
  390. .day span {
  391. line-height: 1.5;
  392. }
  393. #new-article + .day {
  394. }
  395. .day .name {
  396. padding: 0 0 0 10px;
  397. font-size: 1.8em;
  398. opacity: 0.3;
  399. font-style: italic;
  400. text-align: left;
  401. }
  402. /*=== Index menu */
  403. .nav_menu {
  404. text-align: center;
  405. padding: 5px 0;
  406. }
  407. /*=== Feed articles */
  408. .flux {
  409. }
  410. .flux:hover {
  411. }
  412. .flux.current {
  413. }
  414. .flux.not_read {
  415. }
  416. .flux.not_read:not(.current):hover .item.title {
  417. }
  418. .flux.favorite {
  419. }
  420. .flux.favorite:not(.current):hover .item.title {
  421. }
  422. .flux_header {
  423. font-size: 0.8rem;
  424. cursor: pointer;
  425. }
  426. .flux_header .title {
  427. font-size: 0.9rem;
  428. }
  429. .flux .website .favicon {
  430. padding: 5px;
  431. }
  432. .flux:not(.current):hover .item.title {
  433. }
  434. .flux .bottom {
  435. font-size: 0.8rem;
  436. text-align: center;
  437. }
  438. /*=== Content of feed articles */
  439. .content {
  440. padding: 20px 10px;
  441. }
  442. .content > h1.title > a {
  443. }
  444. .content hr {
  445. margin: 30px 10px;
  446. height: 1px;
  447. }
  448. .content pre {
  449. }
  450. .content code {
  451. }
  452. .content pre code {
  453. }
  454. .content blockquote {
  455. margin: 0;
  456. padding: 5px 20px;
  457. display: block;
  458. }
  459. .content blockquote p {
  460. margin: 0;
  461. }
  462. /*=== Notification and actualize notification */
  463. .notification {
  464. }
  465. .notification.good {
  466. }
  467. .notification.bad {
  468. }
  469. .notification.good .close:hover {
  470. }
  471. .notification.bad .close:hover {
  472. }
  473. /*=== "Load more" part */
  474. #bigMarkAsRead.big {
  475. text-align: center;
  476. text-decoration: none;
  477. }
  478. #bigMarkAsRead:hover {
  479. }
  480. #bigMarkAsRead:hover .bigTick {
  481. }
  482. /*=== Navigation menu (for articles) */
  483. #nav_entries {
  484. }
  485. /*=== READER VIEW */
  486. /*================*/
  487. #stream.reader .flux {
  488. background-color: #f0f0f0;
  489. color: #333;
  490. }
  491. #stream.reader .flux .flux_content {
  492. background-color: #fff;
  493. border-color: #ddd;
  494. }
  495. /*=== GLOBAL VIEW */
  496. /*================*/
  497. .box.category .box-title .title {
  498. font-weight: normal;
  499. text-decoration: none;
  500. text-align: right;
  501. }
  502. .box.category:not([data-unread="0"]) .box-title {
  503. }
  504. .box.category:not([data-unread="0"]) .box-title:active {
  505. }
  506. .box.category:not([data-unread="0"]) .box-title .title {
  507. font-weight: bold;
  508. }
  509. .box.category .title:not([data-unread="0"])::after {
  510. background: none;
  511. border: 0;
  512. position: absolute;
  513. top: 5px; left: 10px;
  514. font-weight: bold;
  515. box-shadow: none;
  516. text-shadow: none;
  517. }
  518. /*=== DIVERS */
  519. /*===========*/
  520. .aside.aside_feed .nav-form input,
  521. .aside.aside_feed .nav-form select {
  522. width: 140px;
  523. }
  524. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  525. left: -20px;
  526. }
  527. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  528. left: 33px;
  529. }
  530. /*=== STATISTICS */
  531. /*===============*/
  532. .stat {
  533. margin: 10px 0 20px;
  534. }
  535. .stat th,
  536. .stat td,
  537. .stat tr {
  538. }
  539. .stat > table td,
  540. .stat > table th {
  541. text-align: center;
  542. }
  543. /*=== MOBILE */
  544. /*===========*/
  545. @media (max-width: 840px) {
  546. .aside {
  547. transition: width 200ms linear;
  548. }
  549. .aside .toggle_aside,
  550. #overlay .close,
  551. .dropdown-menu .toggle_aside,
  552. #slider .toggle_aside {
  553. background: #fff;
  554. border-bottom-color: #ddd;
  555. }
  556. .aside .toggle_aside:hover,
  557. #overlay .close:hover,
  558. .dropdown-menu .toggle_aside:hover,
  559. #slider .toggle_aside:hover {
  560. background-color: #ddd;
  561. }
  562. .aside.aside_feed {
  563. padding: 0;
  564. }
  565. .nav_menu .btn {
  566. margin: 5px 10px;
  567. }
  568. .nav_menu .stick {
  569. margin: 0 10px;
  570. }
  571. .nav_menu .stick .btn {
  572. margin: 5px 0;
  573. }
  574. .nav_menu .search {
  575. display: inline-block;
  576. max-width: 97%;
  577. }
  578. .nav_menu .search input {
  579. max-width: 97%;
  580. width: 90px;
  581. }
  582. .nav_menu .search input:focus {
  583. width: 400px;
  584. }
  585. .day .name {
  586. font-size: 1.1rem;
  587. }
  588. .pagination {
  589. margin: 0 0 3.5em;
  590. }
  591. .notification .close {
  592. display: block;
  593. right: 0;
  594. }
  595. .notification .close:hover {
  596. opacity: 0.5;
  597. }
  598. .notification .close .icon {
  599. display: none;
  600. }
  601. }