* add Material UI theme support * add primary color palette Co-authored-by: Jeremy Letto <jeremy.letto@datasite.com>
66 lines
885 B
CSS
66 lines
885 B
CSS
:root {
|
|
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#root {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family:
|
|
-apple-system,
|
|
BlinkMacSystemFont,
|
|
"Segoe UI",
|
|
"Roboto",
|
|
"Oxygen",
|
|
"Ubuntu",
|
|
"Cantarell",
|
|
"Fira Sans",
|
|
"Droid Sans",
|
|
"Helvetica Neue",
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
|
monospace;
|
|
}
|
|
|
|
strong,
|
|
b {
|
|
font-weight: bold;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.overflow-scroll {
|
|
overflow-y: scroll; /* has to be scroll, not auto */
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.plain-link {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.single-line-ellipsis {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.disabled-link {
|
|
pointer-events: none;
|
|
}
|