pafat.css 18 KB

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