-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (67 loc) · 1.08 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
body {
font-family: "bangers", "cursive";
font-size: 2em;
overflow-y: hidden;
}
h1 {
margin: 0;
top: 0;
}
footer {
position: absolute;
bottom: 0;
}
#container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#game {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.choice {
font-family: "bangers", "cursive";
border: 1px solid black;
border-radius: 50px;
width: 33%;
height: 10%;
cursor: pointer;
color: black;
bottom: 40%;
}
.choice:disabled {
background-color: lightgray;
}
img {
height: inherit;
width: inherit;
}
#reset {
font-family: "bangers", "cursive";
font-size: 1.5em;
border: 1px solid black;
border-radius: 50px;
padding: 25px;
margin-top: 2.5%;
margin-left: 2.5%;
margin-right: 2.5%;
cursor: pointer;
color: black;
}
#score-container {
text-align: center;
height: 4em;
width: 75%;
margin-left: auto;
margin-right: auto;
margin-bottom: 5%;
}
@media (min-height: 450px) {
#score-container {
margin-bottom: 15%;
}
}a