forked from wesbos/JavaScript30
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Project 3 projectnotes index file
- Loading branch information
1 parent
f0cd8ce
commit 6b4ec76
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Scoped CSS Variables and JS</title> | ||
</head> | ||
<body> | ||
<h2>Update CSS Variables with <span class='hl'>JS</span></h2> | ||
|
||
<div class="controls"> | ||
<label for="spacing">Spacing:</label> | ||
<input id="spacing" type="range" name="spacing" min="10" max="200" value="10" data-sizing="px"> | ||
|
||
<label for="blur">Blur:</label> | ||
<input id="blur" type="range" name="blur" min="0" max="25" value="10" data-sizing="px"> | ||
|
||
<label for="base">Base Color</label> | ||
<input id="base" type="color" name="base" value="#ffc600"> | ||
</div> | ||
|
||
<img src="https://source.unsplash.com/7bwQXzbF6KE/800x500"> | ||
|
||
<style> | ||
|
||
/* | ||
misc styles, nothing to do with CSS variables | ||
*/ | ||
|
||
body { | ||
text-align: center; | ||
background: #193549; | ||
color: white; | ||
font-family: 'helvetica neue', sans-serif; | ||
font-weight: 100; | ||
font-size: 50px; | ||
} | ||
|
||
.controls { | ||
margin-bottom: 50px; | ||
} | ||
|
||
input { | ||
width:100px; | ||
} | ||
</style> | ||
|
||
<script> | ||
</script> | ||
|
||
</body> | ||
</html> |