origine-compact.css 20 KB

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