flat.css 17 KB

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