-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
123 lines (101 loc) · 2.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
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
115
116
117
118
119
120
121
122
123
[v-cloak] {display: none}
.container {
background-color: aliceblue;
padding: 2rem;
}
.ball {
width: 60vw;
height: 60vw;
background-color: black;
border-radius: 100%;
margin: 3rem auto;
display: grid;
justify-content: center;
align-items: center;
}
.bit {
width: 40vw;
height: 40vw;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.eightBit {
background-color: white;
}
.eightBit p {
font-size: 8rem;
}
.centerBit {
background-color: white;
background-image: radial-gradient(#102542, #1d1d1d);
color: white !important;
}
.btn-submit {
background-color: #102542 !important;
color: white !important;
}
p {
text-align: center;
font-weight: bold;
margin: auto !important;
font-size: 2rem;
}
/* MEDIA QUERIES */
/* Small devices (landscape phones, 665px and up) */
@media (min-width: 665px) {
.ball {
width: 55vw;
height: 55vw;
}
.bit {
width: 35vw;
height: 35vw;
}
.eightBit p {
font-size: 7rem;
}
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
.ball {
width: 45vw;
height: 45vw;
margin: 2.5rem auto;
}
.bit {
width: 30vw;
height: 30vw;
}
.eightBit p {
font-size: 8rem;
}
.answerBit {
font-size: 2.5rem;
}
.userForm {
width: 70vw;
margin: 0 auto;
}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
.ball {
width: 35vw;
height: 35vw;
margin: 1.5rem auto;
}
.bit {
width: 21vw;
height: 21vw;
}
.eightBit p {
font-size: 9rem;
}
.userForm {
width: 50vw;
}
}
/* Extra large devices (large desktops, 1200px and up) */
/* @media (min-width: 1200px) { } */