14 lines
224 B
CSS
14 lines
224 B
CSS
@import url(https://fonts.googleapis.com/css?family=Roboto);
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
#output {
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|