-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
81 lines (70 loc) · 3.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Color Picker</title>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="st/reset.css" media="all">
<link rel="stylesheet" type="text/css" href="st/styles.css" media="all">
<link rel="stylesheet" type="text/css" href="src/css/color-picker.css" media="all">
<script type="text/javascript" src="src/js/color-picker.js"></script>
</head>
<body style="width: 100%; height:100%; position: relative;">
<div id="background-container">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div id="caption-container">
<div id="butterfly"><div class="wings"></div></div>
<ul>
<li>
<span class="cover"></span>
<h1>Color Picker<span></span></h1>
</li>
<li>
<div class="cover"></div>
<p>Javascript Library</p>
</li>
</ul>
</div>
<div class="flip-container">
<div class="flipper">
<div class="front color-picker-dark-theme"></div>
<div class="back color-picker-light-theme"></div>
</div>
</div>
<div style="position: absolute; top: 75%; left: 50%; transform: translate(-50%, 0); width: auto; text-align: center;">
<div style="display: inline-block; float: left;">
<input id="dark-theme-option" name="theme-option" value="dark" checked="checked" type="radio" onchange="changeTheme(this);">
<label for="dark-theme-option" ><span style="background-color: rgba(38, 41, 50, 1.0);"></span></label>
</div>
<div style="display: inline-block; float: left;">
<input id="light-theme-option" name="theme-option" value="light" type="radio" onchange="changeTheme(this);">
<label for="light-theme-option"><span style="background-color: rgba(217, 214, 205, 1.0)"></span></label>
</div>
</div>
<a href="https://github.com/ivanvmat/color-picker" target="_blank">
<footer>
<div class="texto">
<span>
<i>
<svg id="Bold" enable-background="new 0 0 32 32" height="30px" viewBox="0 0 32 32" width="30px" xmlns="http://www.w3.org/2000/svg"><path d="m26 32h-20c-3.314 0-6-2.686-6-6v-20c0-3.314 2.686-6 6-6h20c3.314 0 6 2.686 6 6v20c0 3.314-2.686 6-6 6z" fill="rgba(0, 0, 0, 0.025)"></path><path d="m16 8.333c-4.42 0-8 3.52-8 7.861 0 3.474 2.292 6.42 5.47 7.458.4.074.547-.169.547-.378 0-.187-.007-.681-.01-1.336-2.225.474-2.695-1.055-2.695-1.055-.364-.907-.89-1.15-.89-1.15-.725-.487.056-.478.056-.478.803.055 1.225.81 1.225.81.713 1.202 1.873.855 2.33.654.072-.508.278-.855.507-1.051-1.777-.197-3.644-.873-3.644-3.885 0-.858.31-1.559.823-2.109-.09-.198-.36-.998.07-2.081 0 0 .67-.211 2.2.806.64-.175 1.32-.261 2-.265.68.004 1.36.09 2 .265 1.52-1.017 2.19-.806 2.19-.806.43 1.083.16 1.882.08 2.081.51.55.82 1.251.82 2.109 0 3.02-1.87 3.685-3.65 3.878.28.236.54.718.54 1.454 0 1.052-.01 1.897-.01 2.153 0 .206.14.452.55.373 3.201-1.03 5.491-3.978 5.491-7.446 0-4.342-3.582-7.862-8-7.862z" fill="#020202"></path></svg>
</i>
view on github
</span>
</div>
</footer>
</a>
<script type="text/javascript" src="st/script.js"></script>
</body>
</html>