pafat.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218
  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. .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. max-width: 20rem;
  581. margin-left: auto;
  582. margin-right: auto;
  583. padding-left: .5rem;
  584. padding-right: .5rem;
  585. text-align: center;
  586. }
  587. .prompt form {
  588. margin-top: 2rem;
  589. margin-bottom: 3rem;
  590. text-align: left;
  591. }
  592. .prompt .form-group {
  593. margin-bottom: 1rem;
  594. }
  595. .prompt .form-group::after {
  596. display: none;
  597. }
  598. .prompt .form-group.form-group-actions {
  599. display: flex;
  600. margin-top: 2rem;
  601. align-items: center;
  602. justify-content: space-between;
  603. }
  604. .prompt .stick,
  605. .prompt input {
  606. width: 100%;
  607. box-sizing: border-box;
  608. }
  609. .prompt .btn.btn-important {
  610. padding-left: 1.5rem;
  611. padding-right: 1.5rem;
  612. font-size: 1.1rem;
  613. }
  614. .prompt p {
  615. margin: 20px 0;
  616. }
  617. /*=== New article notification */
  618. #new-article {
  619. background: #428bca;
  620. text-align: center;
  621. font-size: 0.9em;
  622. }
  623. #new-article:hover {
  624. background: #3276b1;
  625. }
  626. #new-article > a {
  627. line-height: 3em;
  628. color: #fff;
  629. font-weight: bold;
  630. }
  631. #new-article > a:hover {
  632. text-decoration: none;
  633. }
  634. /*=== Day indication */
  635. .day {
  636. padding: 0 10px;
  637. background: #fff;
  638. color: #666;
  639. border-top: 1px solid #aaa;
  640. border-bottom: 1px solid #aaa;
  641. font-weight: bold;
  642. line-height: 3em;
  643. }
  644. #new-article + .day {
  645. border-top: none;
  646. }
  647. .day .name {
  648. padding: 0 10px 0 0;
  649. color: #666;
  650. font-size: 1.8em;
  651. opacity: 0.3;
  652. font-style: italic;
  653. text-align: right;
  654. }
  655. /*=== Index menu */
  656. .nav_menu {
  657. padding: 5px 0;
  658. background: #fafafa;
  659. border-bottom: 1px solid #aaa;
  660. text-align: center;
  661. }
  662. /*=== Feed articles */
  663. .flux {
  664. background: #fafafa;
  665. border-left: 3px solid #5cb85c;
  666. }
  667. .flux:hover {
  668. background: #fff;
  669. }
  670. .flux.current {
  671. background: #fff;
  672. border-left: 3px solid #39b3d7;
  673. }
  674. .flux.not_read {
  675. border-left: 3px solid #d9534f;
  676. }
  677. .flux .item.title a, .flux.not_read:not(.current):hover .item.title {
  678. color: #333;
  679. }
  680. .flux.favorite {
  681. border-left: 2px solid #428bca;
  682. }
  683. .flux.favorite:not(.current) {
  684. background: #fff6da;
  685. }
  686. .flux.favorite:not(.current):hover .item.title {
  687. background: #fff6da;
  688. }
  689. .flux_header {
  690. font-size: 0.8rem;
  691. border-top: 1px solid #ddd;
  692. cursor: pointer;
  693. }
  694. .flux_header .title {
  695. font-size: 0.9rem;
  696. }
  697. .flux .website .favicon {
  698. padding: 5px;
  699. }
  700. .flux .item.date {
  701. color: #666;
  702. font-size: 0.7rem;
  703. }
  704. .flux .bottom {
  705. font-size: 0.8rem;
  706. text-align: center;
  707. }
  708. /*=== Content of feed articles */
  709. .content {
  710. padding: 20px 10px;
  711. }
  712. .content > h1.title > a {
  713. color: #333;
  714. }
  715. .content hr {
  716. margin: 30px 10px;
  717. background: #ddd;
  718. height: 1px;
  719. border: 0;
  720. box-shadow: 0 2px 5px #ccc;
  721. }
  722. .content pre {
  723. margin: 10px auto;
  724. padding: 10px 20px;
  725. overflow: auto;
  726. background: #222;
  727. color: #fff;
  728. font-size: 0.9rem;
  729. border-radius: 3px;
  730. }
  731. .content code {
  732. padding: 2px 5px;
  733. background: #fafafa;
  734. color: #d14;
  735. border: 1px solid #eee;
  736. border-radius: 3px;
  737. }
  738. .content pre code {
  739. background: transparent;
  740. color: #fff;
  741. border: none;
  742. }
  743. .content blockquote {
  744. margin: 0;
  745. padding: 5px 20px;
  746. background: #fafafa;
  747. display: block;
  748. color: #41444f;
  749. border-top: 1px solid #ddd;
  750. border-bottom: 1px solid #ddd;
  751. }
  752. .content blockquote p {
  753. margin: 0;
  754. }
  755. /*=== Notification and actualize notification */
  756. .notification {
  757. padding: 0 0 0 5px;
  758. font-size: 0.9em;
  759. border: 1px solid #eeb;
  760. border-radius: 3px;
  761. box-shadow: 0 0 5px #ddd;
  762. text-align: center;
  763. font-weight: bold;
  764. line-height: 3em;
  765. z-index: 10;
  766. vertical-align: middle;
  767. }
  768. .notification.good {
  769. background: #ffe;
  770. color: #c95;
  771. border: 1px solid #eeb;
  772. }
  773. .notification.bad {
  774. background: #fdd;
  775. color: #844;
  776. border: 1px solid #ecc;
  777. }
  778. .notification a.close {
  779. padding: 0 15px;
  780. line-height: 3em;
  781. }
  782. .notification.good a.close:hover {
  783. background: #eeb;
  784. }
  785. .notification.bad a.close:hover {
  786. background: #ecc;
  787. }
  788. .notification#actualizeProgress {
  789. line-height: 2em;
  790. }
  791. /*=== "Load more" part */
  792. #bigMarkAsRead {
  793. background: #fafafa;
  794. color: #666;
  795. text-align: center;
  796. text-decoration: none;
  797. }
  798. #bigMarkAsRead:hover {
  799. background: #f0f0f0;
  800. color: #000;
  801. }
  802. #bigMarkAsRead:hover .bigTick {
  803. /* text-shadow: 0 0 10px #666;*/
  804. }
  805. /*=== Navigation menu (for articles) */
  806. #nav_entries {
  807. margin: 0;
  808. background: #fff;
  809. border-top: 1px solid #ddd;
  810. text-align: center;
  811. line-height: 3em;
  812. table-layout: fixed;
  813. }
  814. #nav_entries .item:hover {
  815. background: #eee ;
  816. }
  817. /*=== READER VIEW */
  818. /*================*/
  819. #stream.reader .flux {
  820. padding: 0 0 50px;
  821. background: #f0f0f0;
  822. color: #41444f;
  823. border: none;
  824. }
  825. #stream.reader .flux .author {
  826. margin: 0 0 10px;
  827. color: #666;
  828. font-size: 90%;
  829. }
  830. /*=== GLOBAL VIEW */
  831. /*================*/
  832. .box.category .box-title .title {
  833. font-weight: normal;
  834. text-decoration: none;
  835. text-align: left;
  836. }
  837. .box.category:not([data-unread="0"]) .box-title {
  838. background: #5bc0de;
  839. }
  840. .box.category:not([data-unread="0"]) .box-title .title {
  841. font-weight: bold;
  842. color: #fff;
  843. }
  844. .box.category .title:not([data-unread="0"])::after {
  845. background: none;
  846. font-size: 0.8rem;
  847. border: 0;
  848. box-shadow: none;
  849. position: absolute;
  850. top: 5px; right: 10px;
  851. font-weight: bold;
  852. text-shadow: none;
  853. line-height: 1.6rem;
  854. }
  855. .box.category .item.feed {
  856. padding: 2px 10px;
  857. font-size: 0.8rem;
  858. }
  859. /*=== DIVERS */
  860. /*===========*/
  861. .aside.aside_feed .nav-form input,
  862. .aside.aside_feed .nav-form select {
  863. width: 140px;
  864. }
  865. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  866. right: -20px;
  867. }
  868. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  869. right: 33px;
  870. }
  871. /*=== STATISTICS */
  872. /*===============*/
  873. .stat {
  874. margin: 10px 0 20px;
  875. }
  876. .stat th,
  877. .stat td,
  878. .stat tr {
  879. border: none;
  880. }
  881. .stat > table td,
  882. .stat > table th {
  883. border-bottom: 1px solid #ddd;
  884. text-align: center;
  885. }
  886. .stat > .horizontal-list {
  887. margin: 0 0 5px;
  888. }
  889. .stat > .horizontal-list .item {
  890. overflow: hidden;
  891. white-space: nowrap;
  892. text-overflow: ellipsis;
  893. }
  894. .stat > .horizontal-list .item:first-child {
  895. width: 250px;
  896. }
  897. /*=== LOGS */
  898. /*=========*/
  899. .loglist {
  900. border: 1px solid #aaa;
  901. border-radius: 5px;
  902. overflow: hidden;
  903. }
  904. .log {
  905. padding: 5px 10px;
  906. background: #fafafa;
  907. color: #41444f;
  908. font-size: 0.8rem;
  909. }
  910. .log+.log {
  911. border-top: 1px solid #aaa;
  912. }
  913. .log .date {
  914. display: block;
  915. font-weight: bold;
  916. }
  917. .log.error {
  918. background: #fdd;
  919. color: #844;
  920. }
  921. .log.warning {
  922. background: #ffe;
  923. color: #c95;
  924. }
  925. .log.notice {
  926. background: #f4f4f4;
  927. color: #aaa;
  928. }
  929. .log.debug {
  930. background: #41444f;
  931. color: #eee;
  932. }
  933. /*=== MOBILE */
  934. /*===========*/
  935. @media (max-width: 840px) {
  936. .form-group .group-name {
  937. padding-bottom: 0;
  938. text-align: left;
  939. }
  940. .box .box-title .configure,
  941. .box .box-content .item .configure {
  942. visibility: visible;
  943. }
  944. .aside {
  945. transition: width 200ms linear;
  946. }
  947. .aside:target {
  948. box-shadow: 3px 0 3px #aaa;
  949. }
  950. .aside .toggle_aside,
  951. #panel .close {
  952. background: #f6f6f6;
  953. display: block;
  954. width: 100%;
  955. height: 40px;
  956. border-bottom: 1px solid #ddd;
  957. line-height: 40px;
  958. text-align: center;
  959. }
  960. .aside.aside_feed {
  961. padding: 0;
  962. }
  963. .nav_menu .btn {
  964. margin: 5px 10px;
  965. }
  966. .nav_menu .stick {
  967. margin: 0 10px;
  968. }
  969. .nav_menu .stick .btn {
  970. margin: 5px 0;
  971. }
  972. .nav_menu .search {
  973. display: inline-block;
  974. max-width: 97%;
  975. }
  976. .nav_menu .search input {
  977. max-width: 97%;
  978. width: 90px;
  979. }
  980. .nav_menu .search input:focus {
  981. width: 400px;
  982. }
  983. .day .name {
  984. font-size: 1.1rem;
  985. text-shadow: none;
  986. }
  987. .pagination {
  988. margin: 0 0 3.5em;
  989. }
  990. .notification a.close {
  991. background: transparent;
  992. display: block;
  993. left: 0;
  994. }
  995. .notification a.close:hover {
  996. opacity: 0.5;
  997. }
  998. .notification a.close .icon {
  999. display: none;
  1000. }
  1001. .post {
  1002. padding-left: 15px;
  1003. padding-right: 15px;
  1004. }
  1005. }