pafat.css 18 KB

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