-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
75 lines (65 loc) · 1.47 KB
/
index.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>Open Layers</title>
<style>
html,
body {
margin: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.light {
background-color: #ffffff;
color: #333333;
}
.dark {
background-color: #333333;
color: #ffffff;
}
h2 {
text-align: center;
}
section {
padding: 2em 1em;
display: flex;
flex-direction: column;
align-items: center;
}
section div {
width: 100%;
max-width: 960px;
}
.row {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
</style>
<link rel="icon" type="image/svg+xml" href="./logo-light.svg">
</head>
<body>
<section class="dark">
<div>
<h2>dark</h2>
<div class="row">
<img width="18" height="18" src="./logo-dark.svg">
<img width="36" height="36" src="./logo-dark.svg">
<img width="72" height="72" src="./logo-dark.svg">
<img width="142" height="142" src="./logo-dark.svg">
</div>
</div>
</section>
<section class="light">
<div>
<h2>light</h2>
<div class="row">
<img width="18" height="18" src="./logo-light.svg">
<img width="36" height="36" src="./logo-light.svg">
<img width="72" height="72" src="./logo-light.svg">
<img width="142" height="142" src="./logo-light.svg">
</div>
</div>
</section>
</body>
</html>