origine-compact.rtl.css 19 KB

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