flat.rtl.css 17 KB

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