origine-compact.rtl.css 19 KB

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