-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (118 loc) · 2.21 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
124
125
126
/*This is the style of the quizz*/
/* *{
box-sizing: border-box;
margin: 0px;
padding: 0px;
text-decoration: none;
max-width: 100%;
} */
html,body {
background-color: black;
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
h2 {
position: center;
display: flex;
flex-wrap: wrap;
font-size: 50px;
/* max-width: 100%; */
}
/* ----- added today */
.questionDiv{
/* filter: brightness(40%); */
background-image: brightness(40%);
/* min-height: 500px; */
/* min-height: 100%; */
/* backdrop-filter: blur(50px);
backdrop-filter: grayscale(0.5) opacity(0.8); */
}
.submitNextDiv{
display: flex;
justify-content: space-around;
align-items: center;
padding: 5px;
width: 120px;
border-radius: 12px;
margin-bottom: 0px;
}
.nextDiv,
.submitDiv{
padding: 10px;
border-radius: 10px;
color: white;
}
#resultsdiv{
display:flex;
flex-wrap: wrap;
border-color: black;
}
.home-container{
min-height: 100%;
max-width: 100%;
background-color: black;
padding: 30px;
}
.home-container{
display:flex;
flex-direction: column;
align-items: center;
/* text-align: center; */
justify-content: center;
}
.home-container h1{
font-family: 'Bangers', cursive;
color: white;
font-size: 100px;
}
.home-container p,
ol{
color: white;
font-size: medium;
font-family: Arial, Helvetica, sans-serif;
}
.link,
button{
color:black;
font-family: 'Poppins', sans-serif;
font-size: medium;
background-color: white;
border-radius: 10px;
border-width: thin;
border-color: white;
}
button:hover{
box-shadow: 2px 2px 25px 7px white;
}
button a {
text-decoration: none;
}
a:link{
text-decoration: none;
color: black;
padding: 10px;
}
#resultsDiv{
background-color: black;
display:flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
padding: 20px;
}
.optionsForm{
max-width: 400px;
}
@media screen and (max-width: 480px) {
h2{
font-size: 25px;
}
.home-container h1{
font-size: 50px;
}
.optionsForm{
max-width: 200px;
}
}