flat.rtl.css 18 KB

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