pafat.css 18 KB

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