81a2306667
I haven't really tested the API yet, because it's hard to query GraphQL directly, but I'll set up the client in a bit for it!
44 lines
970 B
CSS
44 lines
970 B
CSS
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;
|
|
}
|
|
|
|
/* A font by Jos Buivenga (exljbris) -> www.exljbris.com */
|
|
@font-face {
|
|
font-family: "Delicious";
|
|
src: url(./fonts/Delicious-Roman.otf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Delicious";
|
|
font-weight: 700;
|
|
src: url(./fonts/Delicious-Bold.otf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Delicious";
|
|
font-weight: 800 1000;
|
|
src: url(./fonts/Delicious-Heavy.otf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Delicious";
|
|
font-style: italic;
|
|
src: url(./fonts/Delicious-Italic.otf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Delicious";
|
|
font-style: italic;
|
|
font-weight: 700 1000;
|
|
src: url(./fonts/Delicious-BoldItalic.otf);
|
|
}
|