pafat.css 17 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151
  1. @charset "UTF-8";
  2. /*=== GENERAL */
  3. /*============*/
  4. html, body {
  5. background: #fafafa;
  6. color: #666;
  7. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  8. }
  9. /*=== Links */
  10. a {
  11. color: #2980b9;
  12. outline: none;
  13. }
  14. /*=== Forms */
  15. legend {
  16. margin: 20px 0 5px;
  17. padding: 5px 0;
  18. font-size: 1.4em;
  19. border-bottom: 1px solid #ddd;
  20. }
  21. label {
  22. min-height: 25px;
  23. padding: 5px 0;
  24. cursor: pointer;
  25. }
  26. textarea {
  27. width: 360px;
  28. height: 100px;
  29. }
  30. input, select, textarea {
  31. padding: 1px;
  32. background: #fdfdfd;
  33. color: #666;
  34. border: 1px solid #bbb;
  35. border-radius: 3px;
  36. min-height: 25px;
  37. line-height: 21px;
  38. vertical-align: middle;
  39. }
  40. option {
  41. padding: 0 .5em;
  42. }
  43. input:focus, select:focus, textarea:focus {
  44. outline-color: #aaa;
  45. }
  46. input:invalid, select:invalid {
  47. border-color: #f00;
  48. box-shadow: 0 0 2px 2px #fdd inset;
  49. outline-color: #fdd;
  50. }
  51. input:disabled, select:disabled {
  52. background: #eee;
  53. }
  54. input.extend {
  55. transition: width 200ms linear;
  56. }
  57. /*=== Tables */
  58. table {
  59. border-collapse: collapse;
  60. }
  61. tr, th, td {
  62. padding: 0.5em;
  63. border: 1px solid #ddd;
  64. }
  65. th {
  66. background: #f6f6f6;
  67. }
  68. form td,
  69. form th {
  70. font-weight: normal;
  71. text-align: center;
  72. }
  73. /*=== COMPONENTS */
  74. /*===============*/
  75. /*=== Forms */
  76. .form-group.form-actions {
  77. padding: 5px 0;
  78. background: #f4f4f4;
  79. border-top: 1px solid #ddd;
  80. }
  81. .form-group.form-actions .btn {
  82. margin: 0 10px;
  83. }
  84. .form-group .group-name {
  85. padding: 10px 0;
  86. text-align: right;
  87. }
  88. .form-group .group-controls {
  89. margin-bottom: 10px;
  90. padding: 5px 0;
  91. min-height: 25px;
  92. }
  93. /*=== Buttons */
  94. .stick {
  95. vertical-align: middle;
  96. font-size: 0;
  97. }
  98. .stick input,
  99. .stick .btn {
  100. border-radius: 0;
  101. }
  102. .stick .btn:first-child,
  103. .stick input:first-child {
  104. border-radius: 3px 0 0 3px;
  105. }
  106. .stick .btn-important:first-child {
  107. width: 176px;
  108. }
  109. .stick .btn:last-child,
  110. .stick input:last-child {
  111. border-radius: 0 3px 3px 0;
  112. }
  113. .stick .btn + .btn,
  114. .stick .btn + input,
  115. .stick .btn + .dropdown > .btn,
  116. .stick input + .btn,
  117. .stick input + input,
  118. .stick input + .dropdown > .btn,
  119. .stick .dropdown + .btn,
  120. .stick .dropdown + input,
  121. .stick .dropdown + .dropdown > .btn {
  122. border-left: none;
  123. }
  124. .stick .btn + .dropdown > .btn {
  125. border-left: none;
  126. border-radius: 0 3px 3px 0;
  127. }
  128. .btn {
  129. margin: 0;
  130. padding: 1px 5px;
  131. background: #fff;
  132. display: inline-block;
  133. color: #666;
  134. font-size: 0.9rem;
  135. border: 1px solid #aaa;
  136. border-radius: 3px;
  137. min-height: 29px;
  138. min-width: 15px;
  139. line-height: 25px;
  140. vertical-align: middle;
  141. cursor: pointer;
  142. overflow: hidden;
  143. }
  144. a.btn {
  145. min-height: 25px;
  146. line-height: 25px;
  147. }
  148. .read_all.btn {
  149. height: 29px;
  150. }
  151. .btn:hover {
  152. background: #f0f0f0;
  153. text-decoration: none;
  154. }
  155. .btn.active,
  156. .btn:active,
  157. .dropdown-target:target ~ .btn.dropdown-toggle {
  158. background: #eee;
  159. }
  160. .btn-important {
  161. background: #5cb85c;
  162. color: #fff;
  163. border-color: #5cb85c;
  164. font-weight: normal;
  165. }
  166. .btn-important:hover, .btn-important:active {
  167. background: #47a447;
  168. border-color: #47a447;
  169. box-shadow: none;
  170. }
  171. .btn-important .icon {
  172. filter: brightness(3);
  173. }
  174. .btn-attention {
  175. background: #d9534f;
  176. color: #fff;
  177. border: 1px solid #d9534f;
  178. outline-color: #aaa;
  179. }
  180. .btn-attention:hover {
  181. background: #d2322d;
  182. border-color: #d2322d;
  183. }
  184. .btn-attention:active {
  185. background: #d2322d;
  186. box-shadow: none;
  187. }
  188. /*=== Navigation */
  189. .nav-list .nav-header,
  190. .nav-list .item {
  191. height: 2.5em;
  192. line-height: 2.5em;
  193. font-size: 0.9rem;
  194. }
  195. .nav-list .item:hover {
  196. background: #fafafa;
  197. }
  198. .nav-list .item:hover a {
  199. color: #038;
  200. }
  201. .nav-list .item.active {
  202. background: #3498db;
  203. color: #fff;
  204. }
  205. .nav-list .item.active a {
  206. color: #fff;
  207. }
  208. .nav-list .disable {
  209. background: #fafafa;
  210. color: #aaa;
  211. text-align: center;
  212. }
  213. .nav-list .item > a {
  214. padding: 0 10px;
  215. }
  216. .nav-list a:hover {
  217. text-decoration: none;
  218. }
  219. .nav-list .item.empty a {
  220. color: #f39c12;
  221. }
  222. .nav-list .item.active.empty a {
  223. background: #f39c12;
  224. color: #fff;
  225. }
  226. .nav-list .item.error a {
  227. color: #bd362f;
  228. }
  229. .nav-list .item.active.error a {
  230. background: #bd362f;
  231. color: #fff;
  232. }
  233. .nav-list .nav-header {
  234. padding: 0 10px;
  235. background: #f4f4f4;
  236. color: #888;
  237. border-bottom: 1px solid #ddd;
  238. font-weight: bold;
  239. }
  240. .nav-list .nav-form {
  241. padding: 3px;
  242. text-align: center;
  243. }
  244. .nav-head {
  245. margin: 0;
  246. background: #fff;
  247. background: linear-gradient(to bottom, #fff, #f0f0f0);
  248. text-align: right;
  249. }
  250. .nav-head .item {
  251. padding: 5px 10px;
  252. font-size: 0.9rem;
  253. line-height: 1.5rem;
  254. }
  255. /*=== Horizontal-list */
  256. .horizontal-list {
  257. margin: 0;
  258. padding: 0;
  259. }
  260. .horizontal-list .item {
  261. vertical-align: middle;
  262. }
  263. /*=== Dropdown */
  264. .dropdown-menu {
  265. margin: 5px 0 0;
  266. padding: 5px 0;
  267. font-size: 0.8rem;
  268. border: 1px solid #aaa;
  269. border-radius: 5px;
  270. text-align: left;
  271. }
  272. .dropdown-menu::after {
  273. border-color: #aaa;
  274. right: 8px;
  275. }
  276. .dropdown-header {
  277. padding: 0 5px 5px;
  278. color: #888;
  279. font-weight: bold;
  280. text-align: left;
  281. }
  282. .dropdown-menu > .item > a,
  283. .dropdown-menu > .item > span,
  284. .dropdown-menu > .item > .as-link {
  285. padding: 0 22px;
  286. line-height: 2.5em;
  287. color: #666;
  288. font-size: 0.8rem;
  289. }
  290. .dropdown-menu > .item > a:hover,
  291. .dropdown-menu > .item > button:hover {
  292. background: #eee;
  293. color: #666;
  294. }
  295. .dropdown-menu > .item[aria-checked="true"] > a::before {
  296. font-weight: bold;
  297. margin: 0 0 0 -14px;
  298. }
  299. .dropdown-menu .input select,
  300. .dropdown-menu .input input {
  301. margin: 0 auto 5px;
  302. padding: 2px 5px;
  303. border-radius: 3px;
  304. }
  305. .separator {
  306. margin: 5px 0;
  307. border-bottom: 1px solid #ddd;
  308. }
  309. /*=== Alerts */
  310. .alert {
  311. margin: 15px auto;
  312. padding: 10px 15px;
  313. background: #f4f4f4;
  314. color: #aaa;
  315. font-size: 0.9em;
  316. border: 1px solid #ccc;
  317. border-right: 1px solid #aaa;
  318. border-bottom: 1px solid #aaa;
  319. border-radius: 5px;
  320. }
  321. .alert-head {
  322. font-size: 1.15em;
  323. }
  324. .alert > a {
  325. color: inherit;
  326. text-decoration: underline;
  327. }
  328. .alert-warn {
  329. background: #ffe;
  330. color: #c95;
  331. border: 1px solid #eeb;
  332. }
  333. .alert-success {
  334. background: #dfd;
  335. color: #484;
  336. border: 1px solid #cec;
  337. }
  338. .alert-error {
  339. background: #fdd;
  340. color: #844;
  341. border: 1px solid #ecc;
  342. }
  343. /*=== Pagination */
  344. .pagination {
  345. background: #fff;
  346. color: #41444f;
  347. }
  348. .pagination .item a {
  349. color: #41444f;
  350. }
  351. .pagination:first-child .item {
  352. border-bottom: 1px solid #aaa;
  353. }
  354. .pagination:last-child .item {
  355. border-top: 1px solid #aaa;
  356. }
  357. /*=== Boxes */
  358. .box {
  359. border: 1px solid #aaa;
  360. border-radius: 5px;
  361. }
  362. .box .box-title {
  363. margin: 0;
  364. padding: 5px 10px;
  365. background: #f6f6f6;
  366. border-bottom: 1px solid #aaa;
  367. border-radius: 5px 5px 0 0;
  368. }
  369. .box .box-title .configure {
  370. margin-right: 4px;
  371. }
  372. .box .box-content {
  373. padding-left: 30px;
  374. max-height: 260px;
  375. }
  376. .box .box-content .item {
  377. font-size: 0.9rem;
  378. line-height: 2.5em;
  379. }
  380. /*=== Tree */
  381. .tree {
  382. margin: 10px 0;
  383. }
  384. .tree-folder-title {
  385. margin: 5px;
  386. padding: 0 10px;
  387. background: #5bc0de;
  388. color: #fff;
  389. font-size: 0.9rem;
  390. border-top: 1px solid transparent;
  391. border-bottom: 1px solid transparent;
  392. border-radius: 5px;
  393. position: relative;
  394. line-height: 2rem;
  395. }
  396. .tree-folder-title .title {
  397. background: inherit;
  398. color: #fff;
  399. }
  400. .tree-folder-title .title:hover {
  401. text-decoration: none;
  402. }
  403. .tree-folder.active .tree-folder-title {
  404. background: #39b3d7;
  405. font-weight: bold;
  406. font-size: 1rem;
  407. border-top: 1px solid #666;
  408. border-bottom: 1px solid #666;
  409. }
  410. .tree-folder-items > .item {
  411. padding: 0 10px;
  412. line-height: 2.5rem;
  413. font-size: 0.8rem;
  414. }
  415. .tree-folder-items > .item.active {
  416. background: #5cb85c;
  417. }
  418. .tree-folder-items > .item > a {
  419. text-decoration: none;
  420. }
  421. .tree-folder-items > .item.active > a {
  422. color: #fff;
  423. }
  424. /*=== STRUCTURE */
  425. /*===============*/
  426. /*=== Header */
  427. .header {
  428. background: #41444f;
  429. }
  430. .header > .item {
  431. padding: 10px;
  432. border-bottom: 1px solid #aaa;
  433. vertical-align: middle;
  434. text-align: center;
  435. }
  436. .header > .item.title {
  437. width: 230px;
  438. }
  439. .header > .item.title .logo {
  440. margin: 0.5em 0;
  441. filter: grayscale(100%) brightness(2.5);
  442. }
  443. a.signin {
  444. text-decoration: none;
  445. color: #c5c6ca;
  446. }
  447. .header > .item.search input {
  448. width: 230px;
  449. height: 29px;
  450. box-sizing: border-box;
  451. }
  452. .header > .item.search button {
  453. box-sizing: border-box;
  454. height: 29px;
  455. }
  456. .header .item.search input:focus {
  457. width: 350px;
  458. }
  459. /*=== Body */
  460. .aside {
  461. background: #fff;
  462. border-right: 1px solid #aaa;
  463. }
  464. .aside.aside_feed {
  465. padding: 10px 0;
  466. text-align: center;
  467. }
  468. .aside.aside_feed .tree {
  469. margin: 10px 0 50px;
  470. }
  471. /*=== Aside main page (categories) */
  472. .aside_feed .tree-folder-title > .title:not([data-unread="0"])::after {
  473. margin: 0.5em 0 0 0;
  474. background-color: white;
  475. color: #428bca;
  476. }
  477. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  478. background-color: #5bc0de;
  479. color: white;
  480. }
  481. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  482. right: 5px;
  483. }
  484. .aside.aside_feed .feed.active .item-title:not([data-unread="0"])::after {
  485. background-color: transparent;
  486. color: white;
  487. border: 1px solid #fff;
  488. font-weight: bold;
  489. }
  490. .aside_feed .tree-folder.all .tree-folder-title {
  491. background: #428bca;
  492. }
  493. .aside_feed .tree-folder.all.active .tree-folder-title {
  494. background: #3276b1;
  495. }
  496. .aside_feed .tree-folder.favorites .tree-folder-title {
  497. background: #f0ad4e;
  498. }
  499. .aside_feed .tree-folder.favorites.active .tree-folder-title {
  500. background: #ed9c28;
  501. }
  502. /*=== Aside main page (feeds) */
  503. .feed.item.empty.active {
  504. background: #e67e22;
  505. }
  506. .feed.item.error.active {
  507. background: #bd362f;
  508. }
  509. .feed.item.empty,
  510. .feed.item.empty > a {
  511. color: #e67e22;
  512. }
  513. .feed.item.error,
  514. .feed.item.error > a {
  515. color: #bd362f;
  516. }
  517. .feed.item.empty.active,
  518. .feed.item.error.active,
  519. .feed.item.empty.active > a,
  520. .feed.item.error.active > a {
  521. color: #fff;
  522. }
  523. .aside_feed .tree-folder-items .dropdown-menu::after {
  524. left: 2px;
  525. }
  526. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  527. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  528. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  529. border-radius: 3px;
  530. background-color: #fff;
  531. }
  532. .aside_feed .tree-folder-title .dropdown-toggle .icon {
  533. filter: brightness(3);
  534. }
  535. /*=== Configuration pages */
  536. .post {
  537. padding: 10px 50px;
  538. font-size: 0.9em;
  539. }
  540. .post form {
  541. margin: 10px 0;
  542. }
  543. .post.content {
  544. max-width: 550px;
  545. }
  546. /*=== Prompt (centered) */
  547. .prompt .form-group {
  548. margin-bottom: 1rem;
  549. }
  550. .prompt .form-group::after {
  551. display: none;
  552. }
  553. .prompt .form-group.form-group-actions {
  554. display: flex;
  555. margin-top: 2rem;
  556. align-items: center;
  557. justify-content: space-between;
  558. }
  559. .prompt .btn.btn-important {
  560. padding-left: 1.5rem;
  561. padding-right: 1.5rem;
  562. font-size: 1.1rem;
  563. }
  564. /*=== New article notification */
  565. #new-article {
  566. background: #428bca;
  567. text-align: center;
  568. font-size: 0.9em;
  569. }
  570. #new-article > a {
  571. line-height: 3em;
  572. color: #fff;
  573. font-weight: bold;
  574. }
  575. #new-article > a:hover {
  576. text-decoration: none;
  577. background: #3276b1;
  578. }
  579. /*=== Day indication */
  580. .day {
  581. padding: 0 10px;
  582. background: #fff;
  583. color: #666;
  584. border-top: 1px solid #aaa;
  585. border-bottom: 1px solid #aaa;
  586. font-weight: bold;
  587. line-height: 3em;
  588. }
  589. #new-article + .day {
  590. border-top: none;
  591. }
  592. .day .name {
  593. padding: 0 10px 0 0;
  594. color: #666;
  595. font-size: 1.8em;
  596. opacity: 0.3;
  597. font-style: italic;
  598. text-align: right;
  599. }
  600. /*=== Index menu */
  601. .nav_menu {
  602. padding: 5px 0;
  603. background: #fafafa;
  604. border-bottom: 1px solid #aaa;
  605. text-align: center;
  606. }
  607. /*=== Feed articles */
  608. .flux {
  609. background: #fafafa;
  610. border-left: 3px solid #5cb85c;
  611. }
  612. .flux:hover {
  613. background: #fff;
  614. }
  615. .flux.current {
  616. background: #fff;
  617. border-left: 3px solid #39b3d7;
  618. }
  619. .flux.not_read {
  620. border-left: 3px solid #d9534f;
  621. }
  622. .flux .item.title a, .flux.not_read:not(.current):hover .item.title {
  623. color: #333;
  624. }
  625. .flux.favorite {
  626. border-left: 2px solid #428bca;
  627. }
  628. .flux.favorite:not(.current) {
  629. background: #fff6da;
  630. }
  631. .flux.favorite:not(.current):hover .item.title {
  632. background: #fff6da;
  633. }
  634. .flux_header {
  635. font-size: 0.8rem;
  636. border-top: 1px solid #ddd;
  637. cursor: pointer;
  638. }
  639. .flux_header .title {
  640. font-size: 0.9rem;
  641. }
  642. .flux .website .favicon {
  643. padding: 5px;
  644. }
  645. .flux .item.date {
  646. color: #666;
  647. font-size: 0.7rem;
  648. }
  649. .flux .bottom {
  650. font-size: 0.8rem;
  651. text-align: center;
  652. }
  653. /*=== Content of feed articles */
  654. .content {
  655. padding: 20px 10px;
  656. }
  657. .content > h1.title > a {
  658. color: #333;
  659. }
  660. .content hr {
  661. margin: 30px 10px;
  662. background: #ddd;
  663. height: 1px;
  664. border: 0;
  665. box-shadow: 0 2px 5px #ccc;
  666. }
  667. .content pre {
  668. margin: 10px auto;
  669. padding: 10px 20px;
  670. overflow: auto;
  671. background: #222;
  672. color: #fff;
  673. font-size: 0.9rem;
  674. border-radius: 3px;
  675. }
  676. .content code {
  677. padding: 2px 5px;
  678. background: #fafafa;
  679. color: #d14;
  680. border: 1px solid #eee;
  681. border-radius: 3px;
  682. }
  683. .content pre code {
  684. background: transparent;
  685. color: #fff;
  686. border: none;
  687. }
  688. .content blockquote {
  689. margin: 0;
  690. padding: 5px 20px;
  691. background: #fafafa;
  692. display: block;
  693. color: #41444f;
  694. border-top: 1px solid #ddd;
  695. border-bottom: 1px solid #ddd;
  696. }
  697. .content blockquote p {
  698. margin: 0;
  699. }
  700. /*=== Notification and actualize notification */
  701. .notification {
  702. font-size: 0.9em;
  703. border: 1px solid #eeb;
  704. border-radius: 3px;
  705. box-shadow: 0 0 5px #ddd;
  706. text-align: center;
  707. font-weight: bold;
  708. vertical-align: middle;
  709. }
  710. .notification.good {
  711. background: #ffe;
  712. color: #c95;
  713. border: 1px solid #eeb;
  714. }
  715. .notification.bad {
  716. background: #fdd;
  717. color: #844;
  718. border: 1px solid #ecc;
  719. }
  720. .notification a.close {
  721. padding: 0 15px;
  722. line-height: 3em;
  723. }
  724. .notification.good a.close:hover {
  725. background: #eeb;
  726. }
  727. .notification.bad a.close:hover {
  728. background: #ecc;
  729. }
  730. .notification#actualizeProgress {
  731. line-height: 2em;
  732. }
  733. /*=== "Load more" part */
  734. #bigMarkAsRead {
  735. background: #fafafa;
  736. color: #666;
  737. text-align: center;
  738. text-decoration: none;
  739. }
  740. #bigMarkAsRead:hover {
  741. background: #f0f0f0;
  742. color: #000;
  743. }
  744. #bigMarkAsRead:hover .bigTick {
  745. /* text-shadow: 0 0 10px #666;*/
  746. }
  747. /*=== Navigation menu (for articles) */
  748. #nav_entries {
  749. margin: 0;
  750. background: #fff;
  751. border-top: 1px solid #ddd;
  752. text-align: center;
  753. line-height: 3em;
  754. table-layout: fixed;
  755. }
  756. #nav_entries .item:hover {
  757. background: #eee ;
  758. }
  759. /*=== READER VIEW */
  760. /*================*/
  761. #stream.reader .flux {
  762. padding: 0 0 50px;
  763. background: #f0f0f0;
  764. color: #41444f;
  765. border: none;
  766. }
  767. #stream.reader .flux .author {
  768. margin: 0 0 10px;
  769. color: #666;
  770. font-size: 90%;
  771. }
  772. /*=== GLOBAL VIEW */
  773. /*================*/
  774. .box.category .box-title .title {
  775. font-weight: normal;
  776. text-decoration: none;
  777. text-align: left;
  778. }
  779. .box.category:not([data-unread="0"]) .box-title {
  780. background: #5bc0de;
  781. }
  782. .box.category:not([data-unread="0"]) .box-title .title {
  783. font-weight: bold;
  784. color: #fff;
  785. }
  786. .box.category .title:not([data-unread="0"])::after {
  787. background: none;
  788. font-size: 0.8rem;
  789. border: 0;
  790. box-shadow: none;
  791. position: absolute;
  792. top: 5px; right: 10px;
  793. font-weight: bold;
  794. text-shadow: none;
  795. line-height: 1.6rem;
  796. }
  797. .box.category .item.feed {
  798. padding: 2px 10px;
  799. font-size: 0.8rem;
  800. }
  801. /*=== DIVERS */
  802. /*===========*/
  803. .aside.aside_feed .nav-form input,
  804. .aside.aside_feed .nav-form select {
  805. width: 140px;
  806. }
  807. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  808. right: -20px;
  809. }
  810. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  811. right: 33px;
  812. }
  813. /*=== STATISTICS */
  814. /*===============*/
  815. .stat {
  816. margin: 10px 0 20px;
  817. }
  818. .stat th,
  819. .stat td,
  820. .stat tr {
  821. border: none;
  822. }
  823. .stat > table td,
  824. .stat > table th {
  825. border-bottom: 1px solid #ddd;
  826. text-align: center;
  827. }
  828. .stat > .horizontal-list {
  829. margin: 0 0 5px;
  830. }
  831. .stat > .horizontal-list .item {
  832. overflow: hidden;
  833. white-space: nowrap;
  834. text-overflow: ellipsis;
  835. }
  836. .stat > .horizontal-list .item:first-child {
  837. width: 250px;
  838. }
  839. /*=== LOGS */
  840. /*=========*/
  841. .loglist {
  842. border: 1px solid #aaa;
  843. border-radius: 5px;
  844. overflow: hidden;
  845. }
  846. .log {
  847. padding: 5px 10px;
  848. background: #fafafa;
  849. color: #41444f;
  850. font-size: 0.8rem;
  851. }
  852. .log+.log {
  853. border-top: 1px solid #aaa;
  854. }
  855. .log .date {
  856. display: block;
  857. font-weight: bold;
  858. }
  859. .log.error {
  860. background: #fdd;
  861. color: #844;
  862. }
  863. .log.warning {
  864. background: #ffe;
  865. color: #c95;
  866. }
  867. .log.notice {
  868. background: #f4f4f4;
  869. color: #aaa;
  870. }
  871. .log.debug {
  872. background: #41444f;
  873. color: #eee;
  874. }
  875. /*=== MOBILE */
  876. /*===========*/
  877. @media (max-width: 840px) {
  878. .form-group .group-name {
  879. padding-bottom: 0;
  880. text-align: left;
  881. }
  882. .aside {
  883. transition: width 200ms linear;
  884. }
  885. .aside:target {
  886. box-shadow: 3px 0 3px #aaa;
  887. }
  888. .aside .toggle_aside,
  889. #panel .close,
  890. .dropdown-menu .toggle_aside {
  891. background: #f6f6f6;
  892. display: block;
  893. width: 100%;
  894. height: 40px;
  895. border-bottom: 1px solid #ddd;
  896. line-height: 40px;
  897. text-align: center;
  898. }
  899. .aside.aside_feed {
  900. padding: 0;
  901. }
  902. .nav_menu .btn {
  903. margin: 5px 10px;
  904. }
  905. .nav_menu .stick {
  906. margin: 0 10px;
  907. min-width: 0;
  908. }
  909. .nav_menu .stick .btn {
  910. margin: 5px 0;
  911. }
  912. .nav_menu .search {
  913. display: inline-block;
  914. max-width: 97%;
  915. }
  916. .nav_menu .search input {
  917. max-width: 97%;
  918. width: 90px;
  919. line-height: 2;
  920. }
  921. .nav_menu .search input:focus {
  922. width: 400px;
  923. }
  924. .dropdown-target:target ~ .dropdown-toggle::after {
  925. border-top: 1px solid #aaa;
  926. border-left: 1px solid #aaa;
  927. }
  928. .day .name {
  929. font-size: 1.1rem;
  930. text-shadow: none;
  931. }
  932. .notification a.close {
  933. background: transparent;
  934. display: block;
  935. left: 0;
  936. }
  937. .notification a.close:hover {
  938. opacity: 0.5;
  939. }
  940. .notification a.close .icon {
  941. display: none;
  942. }
  943. .post {
  944. padding-left: 15px;
  945. padding-right: 15px;
  946. }
  947. }