|
|
|
|
|
|
|
|
<!DOCTYPE html> |
|
|
<!DOCTYPE html> |
|
|
|
|
|
|
|
|
<html> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<html lang="en"> |
|
|
<head> |
|
|
<head> |
|
|
|
|
|
|
|
|
|
|
|
<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> |
|
|
</head> |
|
|
</head> |
|
|
|
|
|
<style> |
|
|
|
|
|
.grid-wrapper { |
|
|
|
|
|
display: grid; |
|
|
|
|
|
padding: 4rem 4rem 0 4rem; |
|
|
|
|
|
grid-template-columns: 1fr; |
|
|
|
|
|
grid-template-rows: 100px 100px 100px; |
|
|
|
|
|
grid-gap: 10px; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</html> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.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> |