-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<script src="main.js" defer></script>
<title>Scoped CSS Variables With JS</title>
</head>
<body>
<header>
<h2>Update CSS Variables with <span class="js">JS</span></h2>
</header>
<main>
<section class="controls">
<label for="spacing">Spacing:</label>
<input
type="range"
name="spacing"
min="10"
max="200"
value="10"
id="spacing"
data-sizing="px"
/>
<label for="blur">Blur:</label>
<input
type="range"
name="blur"
min="10"
max="200"
value="10"
id="blur"
data-sizing="px"
/>
<label for="base">Base Color:</label>
<input type="color" name="base" value="#acd600" id="base" />
<div>
<img src="buildings.jpg" alt="buildings" />
</div>
</section>
</main>
<section></section>
</body>
</html>