-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimon.css
More file actions
63 lines (59 loc) · 754 Bytes
/
simon.css
File metadata and controls
63 lines (59 loc) · 754 Bytes
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
body{
text-align: center;
background: linear-gradient(
to right,
#194350 0%,
#94d0cc 100%
)
}
h1{
font-size: 45px;
}
h4{
font-size: 20px;
}
a{
text-decoration: none;
color: #000;
}
#howtoplay{
text-align: justify;
margin: 200px 300px;
}
h2:hover {
color: #fff;
cursor: pointer;
}
h3:hover{
color: #fff;
transform: scale(1);
cursor: pointer;
}
.btn{
margin: 10px;
border: 10px solid black;
border-radius: 20%;
width: 250px;
height: 250px;
}
.blue{
background-color: #3d84b8;
}
.green{
background-color: #34656d;
}
.red{
background-color: #962d2d;
}
.yellow{
background-color: #cc9b6d;
}
.opac{
opacity: 0.3;
}
@media (max-width:1000px) {
.btn{
width: 200px;
height: 180px;
}
}