pafat.css 17 KB

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