-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
71 lines (66 loc) · 2.08 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<style>
button {
height: 30px;
width: 30px;
outline: none;
}
body {
background-color: #162447;
width: 380px;
}
ul {
display: initial;
}
li {
background-color: #1b1b2f;
color: #ff3153;
padding: 4%;
border-radius: 10px;
font-size: medium;
margin: 0.5%;
}
.values {
background-color: #0f0f0f;
border-radius: 10px;
padding: 2%;
border-style: none;
text-align: center;
width: 30%;
float: right;
color: white;
}
#changeColor {
border-style: none;
align-content: center;
width: 95%;
height: 40px;
border-radius: 30px;
background-color: #162447;
padding-top: 20;
margin: 8px;
box-shadow: 0px 3px 10px #2a3349;
color: white;
}
</style>
</head>
<body>
<ul>
<li>background color: <input type="text" placeholder="#000000" id="bckgnd" class="values color"></li>
<li>main color: <input type="text" placeholder="#000000" id="main" class="values color"> </li>
<li>(h1) color: <input type="text" placeholder="#000000" id="h1" class="values color"> </li>
<li>(h2-h5) color: <input type="text" placeholder="#000000" id="h2_h5" class="values color"> </li>
<li>links color: <input type="text" placeholder="#000000" id="links" class="values color"> </li>
</ul>
<button id="changeColor">Generate Random</button>
<script src="scripts/changeBackground.js"></script>
<script src="scripts/apply.js"></script>
<script src="scripts/load.js"></script>
<script src="scripts/open.js"></script>
<script src="scripts/popup.js"></script>
<script src="scripts/saveProps.js"></script>
<script src="scripts/generateRandom.js"></script>
</body>
</html>