pafat.css 17 KB

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