-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
89 lines (85 loc) · 2.5 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Construction</title>
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<link rel="icon" type="image/x-icon" href="meow.png">
<meta name="og:image" content="https://thijmens.nl/cat.png">
<style>
.bodylight {
font-family: 'Poppins';
font-size: 5vw;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
overflow: hidden;
}
#img {
width:35%;
}
.iconlight {
position: absolute;
top: 10px;
right: 10px;
width: 32px;
}
.bodydark {
font-family: 'Poppins';
font-size: 5vw;
color: white;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
overflow: hidden;
background-color: black;
}
.icondark {
content: url("sunlight.png");
position: absolute;
top: 10px;
right: 10px;
width: 32px;
}
@media screen and (max-width: 600px) {
#body {
flex-direction: column;
justify-content: center;
}
#img {
width: 60%;
}
}
@media screen and (min-width: 600px) {
/* Adjust breakpoint as needed */
#body {
font-size: calc(5vw );
}
}
</style>
</head>
<body id="body" class="bodylight">
<img src="sun.png" id="icon" class="iconlight" onclick="changeMode()">
<img src="cat.png" id="img">
<h1 id="text">Under <br>Construction</h1>
<script>
var toggle = false;
function changeMode() {
var body = document.body;
var icon = document.getElementById("icon");
if (!toggle) {
body.className = "bodydark"
icon.className = "icondark"
toggle = !toggle
} else {
body.className = "bodylight"
icon.className = "iconlight"
toggle = !toggle
}
}
</script>
</body>
</html>