pafat.css 17 KB

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