-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
65 lines (55 loc) · 1.33 KB
/
options.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
<!doctype html>
<html>
<head>
<style>
.pwrap {
padding: 0px 20px 0px 20px !important;
width: 500px;
border: 12px solid #66BB6A;
margin-left: 5px !important;
background: #C8E6C9 !important;
}
.wrap {
width: auto;
height: auto;
font-size: 26px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.wrap li:hover{
background: #FF5252;
}
.piwrap{
margin-top: 10px;
width: 30px;
height: 10px;
background: #FF5252;
position: relative;
float: right;
}
#manual{
text-align: center;
background-color: #66BB6A;
color: white;
}
#manual:focus{
color:black;
background-color:white;
}
#btnn{
margin-top: 4px;
}
</style>
<link type="text/css" rel="stylesheet" href="materialize.css" />
<body >
<div class="pwrap card">
<ul class="collection wrap">
</ul>
<div class="row">
<div class="col s8"><input placeholder="Manual" id="manual" type="text" ></div>
<div class="col s4"><div id="btnn" class="green waves-effect waves-light btn">Save</div></div>
</div>
</div>
<script type="text/javascript" src="jquery-3.2.1.js"></script>
<script type="text/javascript" src="save.js"></script>
</body>
</html>