flat.rtl.css 17 KB

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