origine-compact.css 20 KB

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