-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (57 loc) · 1.01 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
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: rgb(0,151,188);
background: linear-gradient(90deg, rgba(0,151,188,1) 0%, rgba(252,70,107,1) 100%);
font-family: 'Press Start 2P', sans-serif;
color: #F8F8FF;
}
.container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
form {
width: 100%;
background-color: rgba(0, 0, 0, 0.5);
padding: 2rem;
border-radius: 1.8rem;
}
h2, h6, .btn {
text-transform: uppercase;
}
.options {
display: flex;
justify-content: center;
align-items: center;
}
.option {
width: 33.3%;
height: 3rem;
font-size: 2em;
text-align: center;
}
.ten {
width: 99.9%;
}
.btn {
margin: auto;
}
.wrongOption {
background-color: red;
color: white;
}
@media (min-width: 950px) {
form {
width: 50%;
}
.btn {
width: 51%;
}
}