flat.rtl.css 18 KB

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