pafat.css 18 KB

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