-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (30 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Breathe Bubble</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="style.css">
</head>
<body>
<!-- <div class="color-pickers">
<span>Pick two colors:</span>
<input type="color" id="bubble-primary" name="bubble-primary" value="#fd746c">
<input type="color" id="bubble-secondary" name="bubble-secondary" value="#ff9068">
</div> -->
<div class="bubble-wrapper">
<div class="outer-circle">
<div class="half-circle top"></div>
<div class="half-circle bottom"></div>
<div class="breathe-bubble">
<p>breathe</p>
</div>
</div>
<div class="spinning-circle">
<div class="half-circle top darker"></div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>