-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathg--gap.html
43 lines (43 loc) · 1.08 KB
/
g--gap.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>g--border-radius</title>
<link href="css/main.css" rel="stylesheet"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
div {
background-color: var(--color-red-5);
margin-bottom: var(--margin-4);
width: 200px;
height: 200px;
}
</style>
</head>
<body class="g--background-color-primary-1 g--margin-8">
<section class="l-columns l-columns--4 g--gap-0">
<div></div>
<div></div>
<div></div>
<div></div>
</section>
<section class="l-columns l-columns--4 g--gap-5">
<div></div>
<div></div>
<div></div>
<div></div>
</section>
<section class="l-columns l-columns--4 g--gap-10">
<div></div>
<div></div>
<div></div>
<div></div>
</section>
<section class="l-columns l-columns--4 g--gap-15">
<div></div>
<div></div>
<div></div>
<div></div>
</section>
</body>
</html>