You've already forked objdiff-web
mirror of
https://github.com/encounter/objdiff-web.git
synced 2026-07-10 12:18:37 -07:00
49 lines
792 B
CSS
49 lines
792 B
CSS
:root {
|
|
--font-size: var(--vscode-editor-font-size, 13px);
|
|
--list-row-height: calc(var(--font-size) * 1.33);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
color: var(--vscode-editor-foreground, #fff);
|
|
font-family: var(
|
|
--vscode-font-family,
|
|
system-ui,
|
|
-apple-system,
|
|
BlinkMacSystemFont,
|
|
"Segoe UI",
|
|
Roboto,
|
|
"Helvetica Neue",
|
|
Arial,
|
|
sans-serif
|
|
);
|
|
background-color: var(--vscode-editor-background, #1e1e1e);
|
|
}
|
|
|
|
#root {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.content {
|
|
flex: 1;
|
|
display: flex;
|
|
min-height: 100vh;
|
|
line-height: 1.1;
|
|
text-align: center;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.content h1 {
|
|
font-size: 3.6rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.content p {
|
|
font-size: 1.2rem;
|
|
font-weight: 400;
|
|
opacity: 0.5;
|
|
}
|