-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (52 loc) · 848 Bytes
/
style.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
58
59
60
61
62
body {
background-color: #4CD4B0;
font-family: "Montserrat", "Avenir";
color: black;
}
h1 {
font-family: "Impact";
font-size: 50px;
}
.container {
margin: 20px auto;
max-width: 40%;
}
#game_description {
text-align: center;
width: 100%;
margin-top: 4%;
}
#startbutton {
background-color: #F24D16;
color: #FFFFFF;
border-radius: 5px;
border: none;
padding: 10px 20px 10px 20px;
outline: none;
cursor: pointer;
width: 20%;
margin-left: 40%;
margin-right: 40%;
}
#results{
text-align: center;
}
.img-responsive {
max-width: 30%;
height: 200px;
cursor: pointer;
border: 5px solid #4CD4B0;
display: inline-block;
}
#result {
text-align: center;
padding: 10px;
}
.clicked {
border: 5px solid #EDD834;
}
.finalResult {
border: 2px solid #EDD834;
color: #FFFCE6;
font-weight: bold;
}