19 lines
397 B
CSS
19 lines
397 B
CSS
body {
|
|
margin: 0;
|
|
font-family: "Roboto", sans-serif;
|
|
font-optical-sizing: auto;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-variation-settings: "wdth" 100;
|
|
--my-monospace-font: 'Inconsolata', monospace;
|
|
cursor: default;
|
|
}
|
|
|
|
kbd {
|
|
border: 2px darkgrey;
|
|
color: rgb(63, 63, 63);
|
|
border-style: outset;
|
|
background-color: whitesmoke;
|
|
border-radius: 3px;
|
|
margin: 0 2px 0 2px;
|
|
}
|