-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (96 loc) · 1.64 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body {
background-color: #d4dbd9;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.container {
display:flex;
flex-direction: column;
text-align:center;
justify-content: center;
}
.title {
font-family: 'Timmana', sans-serif;
font-size: 5rem;
margin: 0;
}
.game {
margin: 0 auto;
max-width: 70%;
}
.choices {
border-radius: 8px;
border: 1px solid white;
}
.choiceContainer {
padding: 1rem;
}
#imgRow {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 1rem;
filter: blur(20px);
}
.image {
max-width: 30%;
}
img {
max-width: 100%;
border-radius: 8px;
box-shadow: -5px 8px 20px 1px #6b6b6b;
}
#radios {
display: flex;
justify-content: space-around;
margin-top: 1rem;
}
.radioGroup label {
display: block;
}
.submit {
margin: 2rem 0 5rem 0;
height: 2rem;
}
#nameInput {
width: 30rem;
height: 2rem;
text-align: center;
font-size: 1rem;
border: none;
margin-bottom: 1rem;
border-radius: 8px;
}
button {
margin: 0 auto;
height: 2rem;
width: 8rem;
border: 0;
background: #0375ff;
color: white;
border-radius: 8px;
}
button:disabled {
margin: 0 auto;
height: 2rem;
width: 8rem;
border: 0;
background: #afafaf;
color: white;
border-radius: 8px;
}
h2 {
margin: 0;
}
.winners {
display: flex;
flex-direction: column;
margin: 0 auto;
max-width: 70%;
}
ul {
padding: 1rem;
border-top: 1px solid white;
}
li {
list-style: none;
}