husstanden/static/css/custom.css

24 lines
414 B
CSS
Raw Normal View History

@import url('https://fonts.googleapis.com/css?family=Poppins');
2019-04-25 22:13:44 +02:00
html, body {
height: 100%;
2019-04-25 17:57:22 +02:00
background-color: #eee;
2019-04-25 19:07:46 +02:00
font-family: "Poppins", sans-serif;
2019-04-25 23:56:26 +02:00
}
.container.module {
background-color: white;
border-radius: 6px;
padding: 8px;
2019-04-26 03:28:27 +02:00
}
2019-05-10 08:24:13 +02:00
.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;
}