-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbutton.css
57 lines (57 loc) · 797 Bytes
/
button.css
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
#popup
{
width: 470px;
height: 320px;
background-color: gray;
position: relative;
}
#content
{
overflow: scroll;
width: 420px;
height: 210px;
background-color: white;
position: absolute;
top: 5%;
left: 6%;
}
#reset_Button
{
width: 100px;
position: absolute;
top: 85%;
left: 85%;
}
#red
{
position: absolute;
width: 30px;
height: 30px;
top: 83%;
left: 5%;
background-color:#FF7A86;
border-color: #FF7A86;
border-radius: 5px;
}
#yellow
{
position: absolute;
width: 30px;
height: 30px;
top: 83%;
left: 15%;
background-color:yellow;
border-color: yellow;
border-radius: 5px;
}
#blue
{
position: absolute;
width: 30px;
height: 30px;
top: 83%;
left: 25%;
background-color:#87CEFA;
border-color: #87CEFA;
border-radius: 5px;
}