4
0

pafat.css 18 KB

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