Files
Cockatrice/webclient/src/index.css
Jeremy Letto f619ef23fd Upgrade to MUI 5 (#4606)
* save work

* fix perf issue on i18n rollup

* fix reset styling

* move body line-height from reset

Co-authored-by: Jeremy Letto <jeremy.letto@datasite.com>
2022-10-29 20:17:03 -05:00

72 lines
1.1 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Teko&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
:root {
}
* {
box-sizing: border-box;
}
html,
body,
#root {
height: 100%;
}
body {
margin: 0;
line-height: 1.4;
font-family:
-apple-system,
BlinkMacSystemFont,
"Open Sans",
"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;
}