pafat.css 17 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205
  1. @charset "UTF-8";
  2. /*=== GENERAL */
  3. /*============*/
  4. html, body {
  5. background: #fafafa;
  6. height: 100%;
  7. color: #666;
  8. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  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. font-size: 1.4em;
  20. border-bottom: 1px solid #ddd;
  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. padding: 1px;
  33. background: #fdfdfd;
  34. color: #666;
  35. border: 1px solid #bbb;
  36. border-radius: 3px;
  37. min-height: 25px;
  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. }
  58. /*=== Tables */
  59. table {
  60. border-collapse: collapse;
  61. }
  62. tr, th, td {
  63. padding: 0.5em;
  64. border: 1px solid #ddd;
  65. }
  66. th {
  67. background: #f6f6f6;
  68. }
  69. form td,
  70. form th {
  71. font-weight: normal;
  72. text-align: center;
  73. }
  74. /*=== COMPONENTS */
  75. /*===============*/
  76. /*=== Forms */
  77. .form-group.form-actions {
  78. padding: 5px 0;
  79. background: #f4f4f4;
  80. border-top: 1px solid #ddd;
  81. }
  82. .form-group.form-actions .btn {
  83. margin: 0 10px;
  84. }
  85. .form-group .group-name {
  86. padding: 10px 0;
  87. text-align: right;
  88. }
  89. .form-group .group-controls {
  90. margin-bottom: 10px;
  91. padding: 5px 0;
  92. min-height: 25px;
  93. }
  94. /*=== Buttons */
  95. .stick {
  96. vertical-align: middle;
  97. font-size: 0;
  98. min-width: 215px;
  99. }
  100. .stick input,
  101. .stick .btn {
  102. border-radius: 0;
  103. }
  104. .stick .btn:first-child,
  105. .stick input:first-child {
  106. border-radius: 3px 0 0 3px;
  107. }
  108. .stick .btn-important:first-child {
  109. width: 176px;
  110. }
  111. .stick .btn:last-child,
  112. .stick input:last-child {
  113. border-radius: 0 3px 3px 0;
  114. }
  115. .stick .btn + .btn,
  116. .stick .btn + input,
  117. .stick .btn + .dropdown > .btn,
  118. .stick input + .btn,
  119. .stick input + input,
  120. .stick input + .dropdown > .btn,
  121. .stick .dropdown + .btn,
  122. .stick .dropdown + input,
  123. .stick .dropdown + .dropdown > .btn {
  124. border-left: none;
  125. }
  126. .stick .btn + .dropdown > .btn {
  127. border-left: none;
  128. border-radius: 0 3px 3px 0;
  129. }
  130. .btn {
  131. margin: 0;
  132. padding: 1px 5px;
  133. background: #fff;
  134. display: inline-block;
  135. color: #666;
  136. font-size: 0.9rem;
  137. border: 1px solid #aaa;
  138. border-radius: 3px;
  139. min-height: 29px;
  140. min-width: 15px;
  141. line-height: 25px;
  142. vertical-align: middle;
  143. cursor: pointer;
  144. overflow: hidden;
  145. }
  146. a.btn {
  147. min-height: 25px;
  148. line-height: 25px;
  149. }
  150. .read_all.btn {
  151. height: 29px;
  152. }
  153. .btn:hover {
  154. background: #f0f0f0;
  155. text-decoration: none;
  156. }
  157. .btn.active,
  158. .btn:active,
  159. .dropdown-target:target ~ .btn.dropdown-toggle {
  160. background: #eee;
  161. }
  162. .btn-important {
  163. background: #5cb85c;
  164. color: #fff;
  165. border-color: #5cb85c;
  166. font-weight: normal;
  167. }
  168. .btn-important:hover, .btn-important:active {
  169. background: #47a447;
  170. border-color: #47a447;
  171. box-shadow: none;
  172. }
  173. .btn-attention {
  174. background: #d9534f;
  175. color: #fff;
  176. border: 1px solid #d9534f;
  177. outline-color: #aaa;
  178. }
  179. .btn-attention:hover {
  180. background: #d2322d;
  181. border-color: #d2322d;
  182. }
  183. .btn-attention:active {
  184. background: #d2322d;
  185. box-shadow: none;
  186. }
  187. /*=== Navigation */
  188. .nav-list .nav-header,
  189. .nav-list .item {
  190. height: 2.5em;
  191. line-height: 2.5em;
  192. font-size: 0.9rem;
  193. }
  194. .nav-list .item:hover {
  195. background: #fafafa;
  196. }
  197. .nav-list .item:hover a {
  198. color: #038;
  199. }
  200. .nav-list .item.active {
  201. background: #3498db;
  202. color: #fff;
  203. }
  204. .nav-list .item.active a {
  205. color: #fff;
  206. }
  207. .nav-list .disable {
  208. background: #fafafa;
  209. color: #aaa;
  210. text-align: center;
  211. }
  212. .nav-list .item > a {
  213. padding: 0 10px;
  214. }
  215. .nav-list a:hover {
  216. text-decoration: none;
  217. }
  218. .nav-list .item.empty a {
  219. color: #f39c12;
  220. }
  221. .nav-list .item.active.empty a {
  222. background: #f39c12;
  223. color: #fff;
  224. }
  225. .nav-list .item.error a {
  226. color: #bd362f;
  227. }
  228. .nav-list .item.active.error a {
  229. background: #bd362f;
  230. color: #fff;
  231. }
  232. .nav-list .nav-header {
  233. padding: 0 10px;
  234. background: #f4f4f4;
  235. color: #888;
  236. border-bottom: 1px solid #ddd;
  237. font-weight: bold;
  238. }
  239. .nav-list .nav-form {
  240. padding: 3px;
  241. text-align: center;
  242. }
  243. .nav-head {
  244. margin: 0;
  245. background: #fff;
  246. background: linear-gradient(to bottom, #fff, #f0f0f0);
  247. text-align: right;
  248. }
  249. .nav-head .item {
  250. padding: 5px 10px;
  251. font-size: 0.9rem;
  252. line-height: 1.5rem;
  253. }
  254. /*=== Horizontal-list */
  255. .horizontal-list {
  256. margin: 0;
  257. padding: 0;
  258. }
  259. .horizontal-list .item {
  260. vertical-align: middle;
  261. }
  262. /*=== Dropdown */
  263. .dropdown-menu {
  264. margin: 5px 0 0;
  265. padding: 5px 0;
  266. font-size: 0.8rem;
  267. border: 1px solid #aaa;
  268. border-radius: 5px;
  269. text-align: left;
  270. }
  271. .dropdown-menu::after {
  272. background: #fff;
  273. width: 10px;
  274. height: 10px;
  275. border-top: 1px solid #aaa;
  276. border-left: 1px solid #aaa;
  277. content: "";
  278. position: absolute;
  279. top: -6px;
  280. right: 13px;
  281. z-index: -10;
  282. transform: rotate(45deg);
  283. }
  284. .dropdown-header {
  285. padding: 0 5px 5px;
  286. color: #888;
  287. font-weight: bold;
  288. text-align: left;
  289. }
  290. .dropdown-menu > .item > a,
  291. .dropdown-menu > .item > span,
  292. .dropdown-menu > .item > .as-link {
  293. padding: 0 22px;
  294. line-height: 2.5em;
  295. color: #666;
  296. font-size: 0.8rem;
  297. }
  298. .dropdown-menu > .item:hover {
  299. background: #eee;
  300. color: #666;
  301. }
  302. .dropdown-menu > .item[aria-checked="true"] > a::before {
  303. font-weight: bold;
  304. margin: 0 0 0 -14px;
  305. }
  306. .dropdown-menu > .item:hover > a {
  307. color: #666;
  308. text-decoration: none;
  309. }
  310. .dropdown-menu .input select,
  311. .dropdown-menu .input input {
  312. margin: 0 auto 5px;
  313. padding: 2px 5px;
  314. border-radius: 3px;
  315. }
  316. .separator {
  317. margin: 5px 0;
  318. border-bottom: 1px solid #ddd;
  319. }
  320. /*=== Alerts */
  321. .alert {
  322. margin: 15px auto;
  323. padding: 10px 15px;
  324. background: #f4f4f4;
  325. color: #aaa;
  326. font-size: 0.9em;
  327. border: 1px solid #ccc;
  328. border-right: 1px solid #aaa;
  329. border-bottom: 1px solid #aaa;
  330. border-radius: 5px;
  331. }
  332. .alert-head {
  333. font-size: 1.15em;
  334. }
  335. .alert > a {
  336. color: inherit;
  337. text-decoration: underline;
  338. }
  339. .alert-warn {
  340. background: #ffe;
  341. color: #c95;
  342. border: 1px solid #eeb;
  343. }
  344. .alert-success {
  345. background: #dfd;
  346. color: #484;
  347. border: 1px solid #cec;
  348. }
  349. .alert-error {
  350. background: #fdd;
  351. color: #844;
  352. border: 1px solid #ecc;
  353. }
  354. /*=== Pagination */
  355. .pagination {
  356. background: #fff;
  357. text-align: center;
  358. color: #41444f;
  359. font-size: 0.8em;
  360. }
  361. .content .pagination {
  362. margin: 0;
  363. padding: 0;
  364. }
  365. .pagination .item.pager-current {
  366. font-weight: bold;
  367. font-size: 1.5em;
  368. }
  369. .pagination .item a {
  370. display: block;
  371. color: #41444f;
  372. font-style: italic;
  373. line-height: 3em;
  374. text-decoration: none;
  375. }
  376. .pagination .item a:hover {
  377. background: #ddd;
  378. }
  379. .pagination:first-child .item {
  380. border-bottom: 1px solid #aaa;
  381. }
  382. .pagination:last-child .item {
  383. border-top: 1px solid #aaa;
  384. }
  385. .pagination .loading,
  386. .pagination a:hover.loading {
  387. background: url("loader.gif") center center no-repeat #fff;
  388. font-size: 0;
  389. }
  390. /*=== Boxes */
  391. .box {
  392. border: 1px solid #aaa;
  393. border-radius: 5px;
  394. }
  395. .box .box-title {
  396. margin: 0;
  397. padding: 5px 10px;
  398. background: #f6f6f6;
  399. border-bottom: 1px solid #aaa;
  400. border-radius: 5px 5px 0 0;
  401. }
  402. .box .box-title .configure {
  403. margin-right: 4px;
  404. }
  405. .box .box-content {
  406. padding-left: 30px;
  407. max-height: 260px;
  408. }
  409. .box .box-content .item {
  410. font-size: 0.9rem;
  411. line-height: 2.5em;
  412. }
  413. /*=== Tree */
  414. .tree {
  415. margin: 10px 0;
  416. }
  417. .tree-folder-title {
  418. margin: 5px;
  419. padding: 0 10px;
  420. background: #5bc0de;
  421. color: #fff;
  422. font-size: 0.9rem;
  423. border-top: 1px solid transparent;
  424. border-bottom: 1px solid transparent;
  425. border-radius: 5px;
  426. position: relative;
  427. line-height: 2rem;
  428. }
  429. .tree-folder-title .title {
  430. background: inherit;
  431. color: #fff;
  432. }
  433. .tree-folder-title .title:hover {
  434. text-decoration: none;
  435. }
  436. .tree-folder.active .tree-folder-title {
  437. background: #39b3d7;
  438. font-weight: bold;
  439. font-size: 1rem;
  440. border-top: 1px solid #666;
  441. border-bottom: 1px solid #666;
  442. }
  443. .tree-folder-items > .item {
  444. padding: 0 10px;
  445. line-height: 2.5rem;
  446. font-size: 0.8rem;
  447. }
  448. .tree-folder-items > .item.active {
  449. background: #5cb85c;
  450. }
  451. .tree-folder-items > .item > a {
  452. text-decoration: none;
  453. }
  454. .tree-folder-items > .item.active > a {
  455. color: #fff;
  456. }
  457. /*=== STRUCTURE */
  458. /*===============*/
  459. /*=== Header */
  460. .header {
  461. background: #41444f;
  462. height: 85px;
  463. }
  464. .header > .item {
  465. padding: 10px;
  466. border-bottom: 1px solid #aaa;
  467. vertical-align: middle;
  468. text-align: center;
  469. }
  470. .header > .item.title {
  471. width: 230px;
  472. }
  473. .header > .item.title .logo {
  474. margin: 0.5em 0;
  475. filter: grayscale(100%) brightness(2.5);
  476. }
  477. a.signin {
  478. text-decoration: none;
  479. color: #c5c6ca;
  480. }
  481. .header > .item.search input {
  482. width: 230px;
  483. height: 29px;
  484. box-sizing: border-box;
  485. }
  486. .header > .item.search button {
  487. box-sizing: border-box;
  488. height: 29px;
  489. }
  490. .header .item.search input:focus {
  491. width: 350px;
  492. }
  493. /*=== Body */
  494. #global {
  495. height: calc(100% - 85px);
  496. }
  497. .aside {
  498. background: #fff;
  499. border-right: 1px solid #aaa;
  500. }
  501. .aside.aside_feed {
  502. padding: 10px 0;
  503. text-align: center;
  504. }
  505. .aside.aside_feed .tree {
  506. margin: 10px 0 50px;
  507. }
  508. /*=== Aside main page (categories) */
  509. .aside_feed .tree-folder-title > .title:not([data-unread="0"])::after {
  510. padding: 0px 5px;
  511. font-size: 0.8rem;
  512. border: 1px solid #fff;
  513. border-radius: 3px;
  514. position: absolute;
  515. top: 0.25rem; right: 3px;
  516. line-height: 1.5rem;
  517. }
  518. .aside_feed .tree-folder.all .tree-folder-title {
  519. background: #428bca;
  520. }
  521. .aside_feed .tree-folder.all.active .tree-folder-title {
  522. background: #3276b1;
  523. }
  524. .aside_feed .tree-folder.favorites .tree-folder-title {
  525. background: #f0ad4e;
  526. }
  527. .aside_feed .tree-folder.favorites.active .tree-folder-title {
  528. background: #ed9c28;
  529. }
  530. /*=== Aside main page (feeds) */
  531. .feed.item.empty.active {
  532. background: #e67e22;
  533. }
  534. .feed.item.error.active {
  535. background: #bd362f;
  536. }
  537. .feed.item.empty,
  538. .feed.item.empty > a {
  539. color: #e67e22;
  540. }
  541. .feed.item.error,
  542. .feed.item.error > a {
  543. color: #bd362f;
  544. }
  545. .feed.item.empty.active,
  546. .feed.item.error.active,
  547. .feed.item.empty.active > a,
  548. .feed.item.error.active > a {
  549. color: #fff;
  550. }
  551. .aside_feed .tree-folder-items .dropdown-menu::after {
  552. left: 2px;
  553. }
  554. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  555. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  556. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  557. border-radius: 3px;
  558. background-color: #fff;
  559. }
  560. /*=== Configuration pages */
  561. .post {
  562. padding: 10px 50px;
  563. font-size: 0.9em;
  564. }
  565. .post form {
  566. margin: 10px 0;
  567. }
  568. .post.content {
  569. max-width: 550px;
  570. }
  571. /*=== Prompt (centered) */
  572. .prompt {
  573. max-width: 20rem;
  574. margin-left: auto;
  575. margin-right: auto;
  576. padding-left: .5rem;
  577. padding-right: .5rem;
  578. text-align: center;
  579. }
  580. .prompt form {
  581. margin-top: 2rem;
  582. margin-bottom: 3rem;
  583. text-align: left;
  584. }
  585. .prompt .form-group {
  586. margin-bottom: 1rem;
  587. }
  588. .prompt .form-group::after {
  589. display: none;
  590. }
  591. .prompt .form-group.form-group-actions {
  592. display: flex;
  593. margin-top: 2rem;
  594. align-items: center;
  595. justify-content: space-between;
  596. }
  597. .prompt .stick,
  598. .prompt input {
  599. width: 100%;
  600. box-sizing: border-box;
  601. }
  602. .prompt .btn.btn-important {
  603. padding-left: 1.5rem;
  604. padding-right: 1.5rem;
  605. font-size: 1.1rem;
  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. background: #fff;
  631. color: #666;
  632. border-top: 1px solid #aaa;
  633. border-bottom: 1px solid #aaa;
  634. font-weight: bold;
  635. line-height: 3em;
  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. padding: 5px 0;
  651. background: #fafafa;
  652. border-bottom: 1px solid #aaa;
  653. text-align: center;
  654. }
  655. /*=== Feed articles */
  656. .flux {
  657. background: #fafafa;
  658. border-left: 3px solid #5cb85c;
  659. }
  660. .flux:hover {
  661. background: #fff;
  662. }
  663. .flux.current {
  664. background: #fff;
  665. border-left: 3px solid #39b3d7;
  666. }
  667. .flux.not_read {
  668. border-left: 3px solid #d9534f;
  669. }
  670. .flux .item.title a, .flux.not_read:not(.current):hover .item.title {
  671. color: #333;
  672. }
  673. .flux.favorite {
  674. border-left: 2px solid #428bca;
  675. }
  676. .flux.favorite:not(.current) {
  677. background: #fff6da;
  678. }
  679. .flux.favorite:not(.current):hover .item.title {
  680. background: #fff6da;
  681. }
  682. .flux_header {
  683. font-size: 0.8rem;
  684. border-top: 1px solid #ddd;
  685. cursor: pointer;
  686. }
  687. .flux_header .title {
  688. font-size: 0.9rem;
  689. }
  690. .flux .website .favicon {
  691. padding: 5px;
  692. }
  693. .flux .item.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. background: #ddd;
  711. height: 1px;
  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. background: #fafafa;
  727. color: #d14;
  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. margin: 0;
  738. padding: 5px 20px;
  739. background: #fafafa;
  740. display: block;
  741. color: #41444f;
  742. border-top: 1px solid #ddd;
  743. border-bottom: 1px solid #ddd;
  744. }
  745. .content blockquote p {
  746. margin: 0;
  747. }
  748. /*=== Notification and actualize notification */
  749. .notification {
  750. padding: 0 0 0 5px;
  751. font-size: 0.9em;
  752. border: 1px solid #eeb;
  753. border-radius: 3px;
  754. box-shadow: 0 0 5px #ddd;
  755. text-align: center;
  756. font-weight: bold;
  757. line-height: 3em;
  758. z-index: 10;
  759. vertical-align: middle;
  760. }
  761. .notification.good {
  762. background: #ffe;
  763. color: #c95;
  764. border: 1px solid #eeb;
  765. }
  766. .notification.bad {
  767. background: #fdd;
  768. color: #844;
  769. border: 1px solid #ecc;
  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. background: #fafafa;
  787. color: #666;
  788. text-align: center;
  789. text-decoration: none;
  790. }
  791. #bigMarkAsRead:hover {
  792. background: #f0f0f0;
  793. color: #000;
  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. background: #f0f0f0;
  815. color: #41444f;
  816. border: none;
  817. }
  818. #stream.reader .flux .author {
  819. margin: 0 0 10px;
  820. color: #666;
  821. font-size: 90%;
  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. background: none;
  839. font-size: 0.8rem;
  840. border: 0;
  841. box-shadow: none;
  842. position: absolute;
  843. top: 5px; right: 10px;
  844. font-weight: bold;
  845. text-shadow: none;
  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. .form-group .group-name {
  930. padding-bottom: 0;
  931. text-align: left;
  932. }
  933. .aside {
  934. transition: width 200ms linear;
  935. }
  936. .aside:target {
  937. box-shadow: 3px 0 3px #aaa;
  938. }
  939. .aside .toggle_aside,
  940. #panel .close {
  941. background: #f6f6f6;
  942. display: block;
  943. width: 100%;
  944. height: 40px;
  945. border-bottom: 1px solid #ddd;
  946. line-height: 40px;
  947. text-align: center;
  948. }
  949. .aside.aside_feed {
  950. padding: 0;
  951. }
  952. .nav_menu .btn {
  953. margin: 5px 10px;
  954. }
  955. .nav_menu .stick {
  956. margin: 0 10px;
  957. min-width: 0;
  958. }
  959. .nav_menu .stick .btn {
  960. margin: 5px 0;
  961. }
  962. .nav_menu .search {
  963. display: inline-block;
  964. max-width: 97%;
  965. }
  966. .nav_menu .search input {
  967. max-width: 97%;
  968. width: 90px;
  969. }
  970. .nav_menu .search input:focus {
  971. width: 400px;
  972. }
  973. .day .name {
  974. font-size: 1.1rem;
  975. text-shadow: none;
  976. }
  977. .pagination {
  978. margin: 0 0 3.5em;
  979. }
  980. .notification a.close {
  981. background: transparent;
  982. display: block;
  983. left: 0;
  984. }
  985. .notification a.close:hover {
  986. opacity: 0.5;
  987. }
  988. .notification a.close .icon {
  989. display: none;
  990. }
  991. .post {
  992. padding-left: 15px;
  993. padding-right: 15px;
  994. }
  995. }