-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (54 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Courgettes Count</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/2.1.3/pure-min.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
.content {
text-align: center;
}
.heading {
font-size: 3rem;
margin-bottom: 20px;
}
.subheading {
font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
.heading {
font-size: 2.5rem;
}
.subheading {
font-size: 1rem;
}
}
</style>
</head>
<body>
<div class="pure-g">
<div class="pure-u-5-5">
<div class="content">
<div class="heading">Courgettes Count</div>
<div class="subheading">36</div>
</div>
</div>
<div class="pure-u-5-5">
<div class="content">
<div class="heading">Squash Count</div>
<div class="subheading">4</div>
</div>
</div>
</div>
</body>
</html>