24 lines
414 B
CSS
24 lines
414 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;
|
|
}
|
|
|
|
.content {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 25%);
|
|
grid-template-rows: repeat(4, 25%);
|
|
grid-column-gap: 8px;
|
|
grid-row-gap: 8px;
|
|
margin-right: 20px;
|
|
}
|
|
|