4
0

pafat.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215
  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. .box .box-title .configure,
  411. .box .box-content .item .configure {
  412. visibility: hidden;
  413. }
  414. .box .box-title:hover .configure,
  415. .box .box-content .item:hover .configure {
  416. visibility: visible;
  417. }
  418. /*=== Tree */
  419. .tree {
  420. margin: 10px 0;
  421. }
  422. .tree-folder-title {
  423. margin: 5px;
  424. padding: 0 10px;
  425. background: #5bc0de;
  426. color: #fff;
  427. font-size: 0.9rem;
  428. border-top: 1px solid transparent;
  429. border-bottom: 1px solid transparent;
  430. border-radius: 5px;
  431. position: relative;
  432. line-height: 2rem;
  433. }
  434. .tree-folder-title .title {
  435. background: inherit;
  436. color: #fff;
  437. }
  438. .tree-folder-title .title:hover {
  439. text-decoration: none;
  440. }
  441. .tree-folder.active .tree-folder-title {
  442. background: #39b3d7;
  443. font-weight: bold;
  444. font-size: 1rem;
  445. border-top: 1px solid #666;
  446. border-bottom: 1px solid #666;
  447. }
  448. .tree-folder-items > .item {
  449. padding: 0 10px;
  450. line-height: 2.5rem;
  451. font-size: 0.8rem;
  452. }
  453. .tree-folder-items > .item.active {
  454. background: #5cb85c;
  455. }
  456. .tree-folder-items > .item > a {
  457. text-decoration: none;
  458. }
  459. .tree-folder-items > .item.active > a {
  460. color: #fff;
  461. }
  462. /*=== STRUCTURE */
  463. /*===============*/
  464. /*=== Header */
  465. .header {
  466. background: #41444f;
  467. height: 85px;
  468. }
  469. .header > .item {
  470. padding: 10px;
  471. border-bottom: 1px solid #aaa;
  472. vertical-align: middle;
  473. text-align: center;
  474. }
  475. .header > .item.title {
  476. width: 230px;
  477. }
  478. .header > .item.title h1 {
  479. margin: 0.5em 0;
  480. }
  481. .header > .item.title h1 a, a.signin {
  482. text-decoration: none;
  483. color: #c5c6ca;
  484. }
  485. .header > .item.search input {
  486. width: 230px;
  487. height: 29px;
  488. box-sizing: border-box;
  489. }
  490. .header > .item.search button {
  491. box-sizing: border-box;
  492. height: 29px;
  493. }
  494. .header .item.search input:focus {
  495. width: 350px;
  496. }
  497. /*=== Body */
  498. #global {
  499. height: calc(100% - 85px);
  500. }
  501. .aside {
  502. background: #fff;
  503. border-right: 1px solid #aaa;
  504. }
  505. .aside.aside_feed {
  506. padding: 10px 0;
  507. text-align: center;
  508. }
  509. .aside.aside_feed .tree {
  510. margin: 10px 0 50px;
  511. }
  512. /*=== Aside main page (categories) */
  513. .aside_feed .tree-folder-title > .title:not([data-unread="0"])::after {
  514. padding: 0px 5px;
  515. font-size: 0.8rem;
  516. border: 1px solid #fff;
  517. border-radius: 3px;
  518. position: absolute;
  519. top: 0.25rem; right: 3px;
  520. line-height: 1.5rem;
  521. }
  522. .aside_feed .tree-folder.all .tree-folder-title {
  523. background: #428bca;
  524. }
  525. .aside_feed .tree-folder.all.active .tree-folder-title {
  526. background: #3276b1;
  527. }
  528. .aside_feed .tree-folder.favorites .tree-folder-title {
  529. background: #f0ad4e;
  530. }
  531. .aside_feed .tree-folder.favorites.active .tree-folder-title {
  532. background: #ed9c28;
  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:hover .dropdown-toggle > .icon,
  560. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  561. border-radius: 3px;
  562. background-color: #fff;
  563. }
  564. /*=== Configuration pages */
  565. .post {
  566. padding: 10px 50px;
  567. font-size: 0.9em;
  568. }
  569. .post form {
  570. margin: 10px 0;
  571. }
  572. .post.content {
  573. max-width: 550px;
  574. }
  575. /*=== Prompt (centered) */
  576. .prompt {
  577. max-width: 20rem;
  578. margin-left: auto;
  579. margin-right: auto;
  580. padding-left: .5rem;
  581. padding-right: .5rem;
  582. text-align: center;
  583. }
  584. .prompt form {
  585. margin-top: 2rem;
  586. margin-bottom: 3rem;
  587. text-align: left;
  588. }
  589. .prompt .form-group {
  590. margin-bottom: 1rem;
  591. }
  592. .prompt .form-group::after {
  593. display: none;
  594. }
  595. .prompt .form-group.form-group-actions {
  596. display: flex;
  597. margin-top: 2rem;
  598. align-items: center;
  599. justify-content: space-between;
  600. }
  601. .prompt .stick,
  602. .prompt input {
  603. width: 100%;
  604. box-sizing: border-box;
  605. }
  606. .prompt .btn.btn-important {
  607. padding-left: 1.5rem;
  608. padding-right: 1.5rem;
  609. font-size: 1.1rem;
  610. }
  611. .prompt p {
  612. margin: 20px 0;
  613. }
  614. /*=== New article notification */
  615. #new-article {
  616. background: #428bca;
  617. text-align: center;
  618. font-size: 0.9em;
  619. }
  620. #new-article:hover {
  621. background: #3276b1;
  622. }
  623. #new-article > a {
  624. line-height: 3em;
  625. color: #fff;
  626. font-weight: bold;
  627. }
  628. #new-article > a:hover {
  629. text-decoration: none;
  630. }
  631. /*=== Day indication */
  632. .day {
  633. padding: 0 10px;
  634. background: #fff;
  635. color: #666;
  636. border-top: 1px solid #aaa;
  637. border-bottom: 1px solid #aaa;
  638. font-weight: bold;
  639. line-height: 3em;
  640. }
  641. #new-article + .day {
  642. border-top: none;
  643. }
  644. .day .name {
  645. padding: 0 10px 0 0;
  646. color: #666;
  647. font-size: 1.8em;
  648. opacity: 0.3;
  649. font-style: italic;
  650. text-align: right;
  651. }
  652. /*=== Index menu */
  653. .nav_menu {
  654. padding: 5px 0;
  655. background: #fafafa;
  656. border-bottom: 1px solid #aaa;
  657. text-align: center;
  658. }
  659. /*=== Feed articles */
  660. .flux {
  661. background: #fafafa;
  662. border-left: 3px solid #5cb85c;
  663. }
  664. .flux:hover {
  665. background: #fff;
  666. }
  667. .flux.current {
  668. background: #fff;
  669. border-left: 3px solid #39b3d7;
  670. }
  671. .flux.not_read {
  672. border-left: 3px solid #d9534f;
  673. }
  674. .flux .item.title a, .flux.not_read:not(.current):hover .item.title {
  675. color: #333;
  676. }
  677. .flux.favorite {
  678. border-left: 2px solid #428bca;
  679. }
  680. .flux.favorite:not(.current) {
  681. background: #fff6da;
  682. }
  683. .flux.favorite:not(.current):hover .item.title {
  684. background: #fff6da;
  685. }
  686. .flux_header {
  687. font-size: 0.8rem;
  688. border-top: 1px solid #ddd;
  689. cursor: pointer;
  690. }
  691. .flux_header .title {
  692. font-size: 0.9rem;
  693. }
  694. .flux .website .favicon {
  695. padding: 5px;
  696. }
  697. .flux .item.date {
  698. color: #666;
  699. font-size: 0.7rem;
  700. }
  701. .flux .bottom {
  702. font-size: 0.8rem;
  703. text-align: center;
  704. }
  705. /*=== Content of feed articles */
  706. .content {
  707. padding: 20px 10px;
  708. }
  709. .content > h1.title > a {
  710. color: #333;
  711. }
  712. .content hr {
  713. margin: 30px 10px;
  714. background: #ddd;
  715. height: 1px;
  716. border: 0;
  717. box-shadow: 0 2px 5px #ccc;
  718. }
  719. .content pre {
  720. margin: 10px auto;
  721. padding: 10px 20px;
  722. overflow: auto;
  723. background: #222;
  724. color: #fff;
  725. font-size: 0.9rem;
  726. border-radius: 3px;
  727. }
  728. .content code {
  729. padding: 2px 5px;
  730. background: #fafafa;
  731. color: #d14;
  732. border: 1px solid #eee;
  733. border-radius: 3px;
  734. }
  735. .content pre code {
  736. background: transparent;
  737. color: #fff;
  738. border: none;
  739. }
  740. .content blockquote {
  741. margin: 0;
  742. padding: 5px 20px;
  743. background: #fafafa;
  744. display: block;
  745. color: #41444f;
  746. border-top: 1px solid #ddd;
  747. border-bottom: 1px solid #ddd;
  748. }
  749. .content blockquote p {
  750. margin: 0;
  751. }
  752. /*=== Notification and actualize notification */
  753. .notification {
  754. padding: 0 0 0 5px;
  755. font-size: 0.9em;
  756. border: 1px solid #eeb;
  757. border-radius: 3px;
  758. box-shadow: 0 0 5px #ddd;
  759. text-align: center;
  760. font-weight: bold;
  761. line-height: 3em;
  762. z-index: 10;
  763. vertical-align: middle;
  764. }
  765. .notification.good {
  766. background: #ffe;
  767. color: #c95;
  768. border: 1px solid #eeb;
  769. }
  770. .notification.bad {
  771. background: #fdd;
  772. color: #844;
  773. border: 1px solid #ecc;
  774. }
  775. .notification a.close {
  776. padding: 0 15px;
  777. line-height: 3em;
  778. }
  779. .notification.good a.close:hover {
  780. background: #eeb;
  781. }
  782. .notification.bad a.close:hover {
  783. background: #ecc;
  784. }
  785. .notification#actualizeProgress {
  786. line-height: 2em;
  787. }
  788. /*=== "Load more" part */
  789. #bigMarkAsRead {
  790. background: #fafafa;
  791. color: #666;
  792. text-align: center;
  793. text-decoration: none;
  794. }
  795. #bigMarkAsRead:hover {
  796. background: #f0f0f0;
  797. color: #000;
  798. }
  799. #bigMarkAsRead:hover .bigTick {
  800. /* text-shadow: 0 0 10px #666;*/
  801. }
  802. /*=== Navigation menu (for articles) */
  803. #nav_entries {
  804. margin: 0;
  805. background: #fff;
  806. border-top: 1px solid #ddd;
  807. text-align: center;
  808. line-height: 3em;
  809. table-layout: fixed;
  810. }
  811. #nav_entries .item:hover {
  812. background: #eee ;
  813. }
  814. /*=== READER VIEW */
  815. /*================*/
  816. #stream.reader .flux {
  817. padding: 0 0 50px;
  818. background: #f0f0f0;
  819. color: #41444f;
  820. border: none;
  821. }
  822. #stream.reader .flux .author {
  823. margin: 0 0 10px;
  824. color: #666;
  825. font-size: 90%;
  826. }
  827. /*=== GLOBAL VIEW */
  828. /*================*/
  829. .box.category .box-title .title {
  830. font-weight: normal;
  831. text-decoration: none;
  832. text-align: left;
  833. }
  834. .box.category:not([data-unread="0"]) .box-title {
  835. background: #5bc0de;
  836. }
  837. .box.category:not([data-unread="0"]) .box-title .title {
  838. font-weight: bold;
  839. color: #fff;
  840. }
  841. .box.category .title:not([data-unread="0"])::after {
  842. background: none;
  843. font-size: 0.8rem;
  844. border: 0;
  845. box-shadow: none;
  846. position: absolute;
  847. top: 5px; right: 10px;
  848. font-weight: bold;
  849. text-shadow: none;
  850. line-height: 1.6rem;
  851. }
  852. .box.category .item.feed {
  853. padding: 2px 10px;
  854. font-size: 0.8rem;
  855. }
  856. /*=== DIVERS */
  857. /*===========*/
  858. .aside.aside_feed .nav-form input,
  859. .aside.aside_feed .nav-form select {
  860. width: 140px;
  861. }
  862. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  863. right: -20px;
  864. }
  865. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  866. right: 33px;
  867. }
  868. /*=== STATISTICS */
  869. /*===============*/
  870. .stat {
  871. margin: 10px 0 20px;
  872. }
  873. .stat th,
  874. .stat td,
  875. .stat tr {
  876. border: none;
  877. }
  878. .stat > table td,
  879. .stat > table th {
  880. border-bottom: 1px solid #ddd;
  881. text-align: center;
  882. }
  883. .stat > .horizontal-list {
  884. margin: 0 0 5px;
  885. }
  886. .stat > .horizontal-list .item {
  887. overflow: hidden;
  888. white-space: nowrap;
  889. text-overflow: ellipsis;
  890. }
  891. .stat > .horizontal-list .item:first-child {
  892. width: 250px;
  893. }
  894. /*=== LOGS */
  895. /*=========*/
  896. .loglist {
  897. border: 1px solid #aaa;
  898. border-radius: 5px;
  899. overflow: hidden;
  900. }
  901. .log {
  902. padding: 5px 10px;
  903. background: #fafafa;
  904. color: #41444f;
  905. font-size: 0.8rem;
  906. }
  907. .log+.log {
  908. border-top: 1px solid #aaa;
  909. }
  910. .log .date {
  911. display: block;
  912. font-weight: bold;
  913. }
  914. .log.error {
  915. background: #fdd;
  916. color: #844;
  917. }
  918. .log.warning {
  919. background: #ffe;
  920. color: #c95;
  921. }
  922. .log.notice {
  923. background: #f4f4f4;
  924. color: #aaa;
  925. }
  926. .log.debug {
  927. background: #41444f;
  928. color: #eee;
  929. }
  930. /*=== MOBILE */
  931. /*===========*/
  932. @media (max-width: 840px) {
  933. .form-group .group-name {
  934. padding-bottom: 0;
  935. text-align: left;
  936. }
  937. .box .box-title .configure,
  938. .box .box-content .item .configure {
  939. visibility: visible;
  940. }
  941. .aside {
  942. transition: width 200ms linear;
  943. }
  944. .aside:target {
  945. box-shadow: 3px 0 3px #aaa;
  946. }
  947. .aside .toggle_aside,
  948. #panel .close {
  949. background: #f6f6f6;
  950. display: block;
  951. width: 100%;
  952. height: 40px;
  953. border-bottom: 1px solid #ddd;
  954. line-height: 40px;
  955. text-align: center;
  956. }
  957. .aside.aside_feed {
  958. padding: 0;
  959. }
  960. .nav_menu .btn {
  961. margin: 5px 10px;
  962. }
  963. .nav_menu .stick {
  964. margin: 0 10px;
  965. min-width: 0;
  966. }
  967. .nav_menu .stick .btn {
  968. margin: 5px 0;
  969. }
  970. .nav_menu .search {
  971. display: inline-block;
  972. max-width: 97%;
  973. }
  974. .nav_menu .search input {
  975. max-width: 97%;
  976. width: 90px;
  977. }
  978. .nav_menu .search input:focus {
  979. width: 400px;
  980. }
  981. .day .name {
  982. font-size: 1.1rem;
  983. text-shadow: none;
  984. }
  985. .pagination {
  986. margin: 0 0 3.5em;
  987. }
  988. .notification a.close {
  989. background: transparent;
  990. display: block;
  991. left: 0;
  992. }
  993. .notification a.close:hover {
  994. opacity: 0.5;
  995. }
  996. .notification a.close .icon {
  997. display: none;
  998. }
  999. .post {
  1000. padding-left: 15px;
  1001. padding-right: 15px;
  1002. }
  1003. }