pafat.css 18 KB

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