-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimon.css
More file actions
89 lines (83 loc) · 1.71 KB
/
simon.css
File metadata and controls
89 lines (83 loc) · 1.71 KB
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
82
83
84
85
86
87
88
89
body {
background-color: black;
text-align: center;
color:white;
}
.btn{
border-radius: 15px;
height: 200px;
width: 200px;
border: 3px solid #282828;
}
.Btn-container{
margin: auto;
border-radius: 225px;
display: flex;
justify-content: center;
background-color: #383838;
box-shadow: 0 0 5px 4px #5d5c5c;
height: 450px;
width: 450px;
}
.center{
position: fixed;
/* height: 176px;
width: 176px;
border-radius: 86px;
margin-top: 139px; */
height: 150px;
width: 150px;
border-radius: 75px;
margin-top: 150px;
background-color:#282828 ;
}
.red{
margin-top: 19px;
background-color: rgb(200, 1, 1);
}
.yellow{
background-color: rgb(182, 182, 2);
}
.green{
margin-top: 19px;
background-color: rgb(1, 102, 1);
}
.blue{
background-color: rgb(4, 4, 124);
}
.flash{
border: 2px solid white;
box-shadow: 0 0 20px 10px;
}
#red{
border-top-left-radius: 200px;
}
#green{
border-top-right-radius: 200px;
}
#yellow{
border-bottom-left-radius: 200px;
}
#blue{
border-bottom-right-radius: 200px;
}
.redFlash{
border: 3px solid rgb(255, 255, 255);
background-color: rgb(255, 0, 0);
box-shadow: 0 0 20px 4px rgb(255, 0, 0);
}
.greenFlash{
border: 3px solid white;
background-color:rgb(9, 255, 0) ;
box-shadow: 0 0 20px 4px rgb(9, 255, 0);
}
.yellowFlash{
border: 3px solid white;
background-color:rgb(234, 255, 0) ;
box-shadow: 0 0 20px 4px rgb(234, 255, 0);
}
.blueFlash{
border: 3px solid white;
background-color:rgb(0, 60, 255) ;
box-shadow: 0 0 20px 4px rgb(0, 60, 255);
}