mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
679 B
34 lines
679 B
@import './color.css'; |
|
html { |
|
font-size: 16px; |
|
word-spacing: 1px; |
|
-ms-text-size-adjust: 100%; |
|
-webkit-text-size-adjust: 100%; |
|
-moz-osx-font-smoothing: grayscale; |
|
-webkit-font-smoothing: antialiased; |
|
box-sizing: border-box; |
|
} |
|
body { |
|
font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; |
|
} |
|
*, *:before, *:after { |
|
box-sizing: border-box; |
|
margin: 0; |
|
} |
|
.btn, .pointer { |
|
cursor: pointer; |
|
} |
|
.primary { |
|
color: var(--primary); |
|
} |
|
.secondary { |
|
color: var(--secondary); |
|
} |
|
.btn-primary { |
|
background-color: var(--primary); |
|
color: #fff; |
|
} |
|
.btn-secondary { |
|
background-color: var(--secondary); |
|
color: #000; |
|
}
|
|
|