-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (23 loc) · 934 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CSS VARIABLES & JS</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<h1><span>JS</span> UPDATING CSS VARIABLES</h1>
<div class="controls">
<label for="spacing">Spacing:</label>
<input type="range" name="spacing" min="10" max="200" value="10" data-sizing="px"/>
<label for="blur">Blur:</label>
<input type="range" name="blur" min="0" max="25" value="10" data-sizing="px"/>
<label for="base">Base:</label>
<input type="color" name="base" value="#ffc600"/>
</div>
<img src="https://wallpaper.dog/large/17150171.jpg"/>
<script type="application/javascript" src="js/script.js"></script>
</body>
</html>