pafat.rtl.css 16 KB

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