20 lines
408 B
CSS
20 lines
408 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
|
|
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: "Roboto", sans-serif;
|
|
font-optical-sizing: auto;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-variation-settings: "wdth" 100;
|
|
}
|
|
|
|
kbd {
|
|
border: 2px darkgrey;
|
|
color: rgb(63, 63, 63);
|
|
border-style: outset;
|
|
background-color: whitesmoke;
|
|
border-radius: 3px;
|
|
margin: 0 2px 0 2px;
|
|
}
|