index.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. body {
  2. margin: 0;
  3. padding-top: 55px;
  4. overflow-y: scroll;
  5. font-family: Lato, 'Helvetica Neue', Arial, Helvetica, "Microsoft YaHei", sans-serif;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. scrollbar-width: none;
  9. color: var(--semi-color-text-0) !important;
  10. background-color: var( --semi-color-bg-0) !important;
  11. }
  12. .tableShow {
  13. display: revert;
  14. }
  15. .tableHiddle {
  16. display: none !important;
  17. }
  18. body::-webkit-scrollbar {
  19. display: none;
  20. }
  21. code {
  22. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
  23. }
  24. .semi-navigation-vertical {
  25. /*display: flex;*/
  26. /*flex-direction: column;*/
  27. }
  28. .semi-navigation-item {
  29. margin-bottom: 0;
  30. }
  31. .semi-navigation-vertical {
  32. /*flex: 0 0 auto;*/
  33. /*display: flex;*/
  34. /*flex-direction: column;*/
  35. /*width: 100%;*/
  36. height: 100vh;
  37. overflow: hidden;
  38. }
  39. .main-content {
  40. padding: 4px;
  41. height: 100%;
  42. }
  43. .small-icon .icon {
  44. font-size: 1em !important;
  45. }
  46. .custom-footer {
  47. font-size: 1.1em;
  48. }
  49. @media only screen and (max-width: 600px) {
  50. .hide-on-mobile {
  51. display: none !important;
  52. }
  53. }