15 lines
243 B
CSS
15 lines
243 B
CSS
@import url('https://fonts.googleapis.com/css?family=Poppins');
|
|
|
|
html, body {
|
|
height: 100%;
|
|
background-color: #eee;
|
|
font-family: "Poppins", sans-serif;
|
|
}
|
|
|
|
.container.module {
|
|
background-color: white;
|
|
border-radius: 6px;
|
|
padding: 8px;
|
|
}
|
|
|