Browse Source

Body grid implemented

master
simongig 4 years ago
parent
commit
bbced0e571
1 changed files with 29 additions and 7 deletions
  1. 29
    7
      index.html

+ 29
- 7
index.html View File

@@ -1,11 +1,33 @@
<!DOCTYPE html>

<html>

<html lang="en">
<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>
<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>

Loading…
Cancel
Save