pafat.rtl.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176
  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: left;
  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: 0 3px 3px 0;
  105. }
  106. .stick .btn-important:first-child {
  107. width: 176px;
  108. }
  109. .stick .btn:last-child,
  110. .stick input:last-child {
  111. border-radius: 3px 0 0 3px;
  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-right: none;
  123. }
  124. .stick .btn + .dropdown > .btn {
  125. border-right: none;
  126. border-radius: 3px 0 0 3px;
  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: left;
  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: right;
  271. }
  272. .dropdown-menu::after {
  273. border-color: #aaa;
  274. left: 8px;
  275. }
  276. .dropdown-header {
  277. padding: 0 5px 5px;
  278. color: #888;
  279. font-weight: bold;
  280. text-align: right;
  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 -14px 0 0;
  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-left: 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-left: 4px;
  371. }
  372. .box .box-content {
  373. padding-right: 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-left: 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. left: 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. right: 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 .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 {
  548. max-width: 20rem;
  549. margin-right: auto;
  550. margin-left: auto;
  551. padding-right: .5rem;
  552. padding-left: .5rem;
  553. text-align: center;
  554. }
  555. .prompt form {
  556. margin-top: 2rem;
  557. margin-bottom: 3rem;
  558. text-align: right;
  559. }
  560. .prompt .form-group {
  561. margin-bottom: 1rem;
  562. }
  563. .prompt .form-group::after {
  564. display: none;
  565. }
  566. .prompt .form-group.form-group-actions {
  567. display: flex;
  568. margin-top: 2rem;
  569. align-items: center;
  570. justify-content: space-between;
  571. }
  572. .prompt .stick,
  573. .prompt input {
  574. width: 100%;
  575. box-sizing: border-box;
  576. }
  577. .prompt .btn.btn-important {
  578. padding-right: 1.5rem;
  579. padding-left: 1.5rem;
  580. font-size: 1.1rem;
  581. }
  582. .prompt p {
  583. margin: 20px 0;
  584. }
  585. /*=== New article notification */
  586. #new-article {
  587. background: #428bca;
  588. text-align: center;
  589. font-size: 0.9em;
  590. }
  591. #new-article > a {
  592. line-height: 3em;
  593. color: #fff;
  594. font-weight: bold;
  595. }
  596. #new-article > a:hover {
  597. text-decoration: none;
  598. background: #3276b1;
  599. }
  600. /*=== Day indication */
  601. .day {
  602. padding: 0 10px;
  603. background: #fff;
  604. color: #666;
  605. border-top: 1px solid #aaa;
  606. border-bottom: 1px solid #aaa;
  607. font-weight: bold;
  608. line-height: 3em;
  609. }
  610. #new-article + .day {
  611. border-top: none;
  612. }
  613. .day .name {
  614. padding: 0 0 0 10px;
  615. color: #666;
  616. font-size: 1.8em;
  617. opacity: 0.3;
  618. font-style: italic;
  619. text-align: left;
  620. }
  621. /*=== Index menu */
  622. .nav_menu {
  623. padding: 5px 0;
  624. background: #fafafa;
  625. border-bottom: 1px solid #aaa;
  626. text-align: center;
  627. }
  628. /*=== Feed articles */
  629. .flux {
  630. background: #fafafa;
  631. border-right: 3px solid #5cb85c;
  632. }
  633. .flux:hover {
  634. background: #fff;
  635. }
  636. .flux.current {
  637. background: #fff;
  638. border-right: 3px solid #39b3d7;
  639. }
  640. .flux.not_read {
  641. border-right: 3px solid #d9534f;
  642. }
  643. .flux .item.title a, .flux.not_read:not(.current):hover .item.title {
  644. color: #333;
  645. }
  646. .flux.favorite {
  647. border-right: 2px solid #428bca;
  648. }
  649. .flux.favorite:not(.current) {
  650. background: #fff6da;
  651. }
  652. .flux.favorite:not(.current):hover .item.title {
  653. background: #fff6da;
  654. }
  655. .flux_header {
  656. font-size: 0.8rem;
  657. border-top: 1px solid #ddd;
  658. cursor: pointer;
  659. }
  660. .flux_header .title {
  661. font-size: 0.9rem;
  662. }
  663. .flux .website .favicon {
  664. padding: 5px;
  665. }
  666. .flux .item.date {
  667. color: #666;
  668. font-size: 0.7rem;
  669. }
  670. .flux .bottom {
  671. font-size: 0.8rem;
  672. text-align: center;
  673. }
  674. /*=== Content of feed articles */
  675. .content {
  676. padding: 20px 10px;
  677. }
  678. .content > h1.title > a {
  679. color: #333;
  680. }
  681. .content hr {
  682. margin: 30px 10px;
  683. background: #ddd;
  684. height: 1px;
  685. border: 0;
  686. box-shadow: 0 2px 5px #ccc;
  687. }
  688. .content pre {
  689. margin: 10px auto;
  690. padding: 10px 20px;
  691. overflow: auto;
  692. background: #222;
  693. color: #fff;
  694. font-size: 0.9rem;
  695. border-radius: 3px;
  696. }
  697. .content code {
  698. padding: 2px 5px;
  699. background: #fafafa;
  700. color: #d14;
  701. border: 1px solid #eee;
  702. border-radius: 3px;
  703. }
  704. .content pre code {
  705. background: transparent;
  706. color: #fff;
  707. border: none;
  708. }
  709. .content blockquote {
  710. margin: 0;
  711. padding: 5px 20px;
  712. background: #fafafa;
  713. display: block;
  714. color: #41444f;
  715. border-top: 1px solid #ddd;
  716. border-bottom: 1px solid #ddd;
  717. }
  718. .content blockquote p {
  719. margin: 0;
  720. }
  721. /*=== Notification and actualize notification */
  722. .notification {
  723. font-size: 0.9em;
  724. border: 1px solid #eeb;
  725. border-radius: 3px;
  726. box-shadow: 0 0 5px #ddd;
  727. text-align: center;
  728. font-weight: bold;
  729. vertical-align: middle;
  730. }
  731. .notification.good {
  732. background: #ffe;
  733. color: #c95;
  734. border: 1px solid #eeb;
  735. }
  736. .notification.bad {
  737. background: #fdd;
  738. color: #844;
  739. border: 1px solid #ecc;
  740. }
  741. .notification a.close {
  742. padding: 0 15px;
  743. line-height: 3em;
  744. }
  745. .notification.good a.close:hover {
  746. background: #eeb;
  747. }
  748. .notification.bad a.close:hover {
  749. background: #ecc;
  750. }
  751. .notification#actualizeProgress {
  752. line-height: 2em;
  753. }
  754. /*=== "Load more" part */
  755. #bigMarkAsRead {
  756. background: #fafafa;
  757. color: #666;
  758. text-align: center;
  759. text-decoration: none;
  760. }
  761. #bigMarkAsRead:hover {
  762. background: #f0f0f0;
  763. color: #000;
  764. }
  765. #bigMarkAsRead:hover .bigTick {
  766. /* text-shadow: 0 0 10px #666;*/
  767. }
  768. /*=== Navigation menu (for articles) */
  769. #nav_entries {
  770. margin: 0;
  771. background: #fff;
  772. border-top: 1px solid #ddd;
  773. text-align: center;
  774. line-height: 3em;
  775. table-layout: fixed;
  776. }
  777. #nav_entries .item:hover {
  778. background: #eee ;
  779. }
  780. /*=== READER VIEW */
  781. /*================*/
  782. #stream.reader .flux {
  783. padding: 0 0 50px;
  784. background: #f0f0f0;
  785. color: #41444f;
  786. border: none;
  787. }
  788. #stream.reader .flux .author {
  789. margin: 0 0 10px;
  790. color: #666;
  791. font-size: 90%;
  792. }
  793. /*=== GLOBAL VIEW */
  794. /*================*/
  795. .box.category .box-title .title {
  796. font-weight: normal;
  797. text-decoration: none;
  798. text-align: right;
  799. }
  800. .box.category:not([data-unread="0"]) .box-title {
  801. background: #5bc0de;
  802. }
  803. .box.category:not([data-unread="0"]) .box-title .title {
  804. font-weight: bold;
  805. color: #fff;
  806. }
  807. .box.category .title:not([data-unread="0"])::after {
  808. background: none;
  809. font-size: 0.8rem;
  810. border: 0;
  811. box-shadow: none;
  812. position: absolute;
  813. top: 5px; left: 10px;
  814. font-weight: bold;
  815. text-shadow: none;
  816. line-height: 1.6rem;
  817. }
  818. .box.category .item.feed {
  819. padding: 2px 10px;
  820. font-size: 0.8rem;
  821. }
  822. /*=== DIVERS */
  823. /*===========*/
  824. .aside.aside_feed .nav-form input,
  825. .aside.aside_feed .nav-form select {
  826. width: 140px;
  827. }
  828. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  829. left: -20px;
  830. }
  831. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  832. left: 33px;
  833. }
  834. /*=== STATISTICS */
  835. /*===============*/
  836. .stat {
  837. margin: 10px 0 20px;
  838. }
  839. .stat th,
  840. .stat td,
  841. .stat tr {
  842. border: none;
  843. }
  844. .stat > table td,
  845. .stat > table th {
  846. border-bottom: 1px solid #ddd;
  847. text-align: center;
  848. }
  849. .stat > .horizontal-list {
  850. margin: 0 0 5px;
  851. }
  852. .stat > .horizontal-list .item {
  853. overflow: hidden;
  854. white-space: nowrap;
  855. text-overflow: ellipsis;
  856. }
  857. .stat > .horizontal-list .item:first-child {
  858. width: 250px;
  859. }
  860. /*=== LOGS */
  861. /*=========*/
  862. .loglist {
  863. border: 1px solid #aaa;
  864. border-radius: 5px;
  865. overflow: hidden;
  866. }
  867. .log {
  868. padding: 5px 10px;
  869. background: #fafafa;
  870. color: #41444f;
  871. font-size: 0.8rem;
  872. }
  873. .log+.log {
  874. border-top: 1px solid #aaa;
  875. }
  876. .log .date {
  877. display: block;
  878. font-weight: bold;
  879. }
  880. .log.error {
  881. background: #fdd;
  882. color: #844;
  883. }
  884. .log.warning {
  885. background: #ffe;
  886. color: #c95;
  887. }
  888. .log.notice {
  889. background: #f4f4f4;
  890. color: #aaa;
  891. }
  892. .log.debug {
  893. background: #41444f;
  894. color: #eee;
  895. }
  896. /*=== MOBILE */
  897. /*===========*/
  898. @media (max-width: 840px) {
  899. .form-group .group-name {
  900. padding-bottom: 0;
  901. text-align: right;
  902. }
  903. .aside {
  904. transition: width 200ms linear;
  905. }
  906. .aside:target {
  907. box-shadow: -3px 0 3px #aaa;
  908. }
  909. .aside .toggle_aside,
  910. #panel .close,
  911. .dropdown-menu .toggle_aside {
  912. background: #f6f6f6;
  913. display: block;
  914. width: 100%;
  915. height: 40px;
  916. border-bottom: 1px solid #ddd;
  917. line-height: 40px;
  918. text-align: center;
  919. }
  920. .aside.aside_feed {
  921. padding: 0;
  922. }
  923. .nav_menu .btn {
  924. margin: 5px 10px;
  925. }
  926. .nav_menu .stick {
  927. margin: 0 10px;
  928. min-width: 0;
  929. }
  930. .nav_menu .stick .btn {
  931. margin: 5px 0;
  932. }
  933. .nav_menu .search {
  934. display: inline-block;
  935. max-width: 97%;
  936. }
  937. .nav_menu .search input {
  938. max-width: 97%;
  939. width: 90px;
  940. line-height: 2;
  941. }
  942. .nav_menu .search input:focus {
  943. width: 400px;
  944. }
  945. .dropdown-target:target ~ .dropdown-toggle::after {
  946. border-top: 1px solid #aaa;
  947. border-right: 1px solid #aaa;
  948. }
  949. .day .name {
  950. font-size: 1.1rem;
  951. text-shadow: none;
  952. }
  953. .notification a.close {
  954. background: transparent;
  955. display: block;
  956. right: 0;
  957. }
  958. .notification a.close:hover {
  959. opacity: 0.5;
  960. }
  961. .notification a.close .icon {
  962. display: none;
  963. }
  964. .post {
  965. padding-right: 15px;
  966. padding-left: 15px;
  967. }
  968. }