pafat.css 16 KB

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