origine-compact.css 19 KB

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