origine.css 17 KB

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