pafat.css 17 KB

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