15 lines
320 B
CSS
15 lines
320 B
CSS
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans');
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Nunito Sans", sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
|
monospace;
|
|
}
|