Testosteroth/index.html

33 lines
787 B
HTML
Raw Normal View History

2019-11-05 14:48:04 +01:00
<!DOCTYPE html>
2019-11-05 15:18:44 +01:00
<html lang="en">
2019-11-05 14:48:04 +01:00
<head>
2019-11-05 15:18:44 +01:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Document</title>
2019-11-05 14:48:04 +01:00
</head>
2019-11-05 15:18:44 +01:00
<style>
.grid-wrapper {
display: grid;
padding: 4rem 4rem 0 4rem;
grid-template-columns: 1fr;
grid-template-rows: 100px 100px 100px;
grid-gap: 10px;
}
2019-11-05 14:48:04 +01:00
2019-11-05 15:18:44 +01:00
.box {
background-color: grey;
}
</style>
<body>
<div class="balance-list">
<h1>Umsätze</h1>
<div class="grid-wrapper">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
</div>
</body>
</html>