-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (77 loc) · 1.41 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
body{
background-image: url(https://as1.ftcdn.net/v2/jpg/01/01/98/18/1000_F_101981885_NQNlj1f1gazes7hwEXp6M4CYzxbrp9H2.jpg);
background-size: cover;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
}
.grid{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
padding: 0 20px;
box-sizing: border-box;
}
.quiz{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0px 60px;
max-width: 700px;
width: 100%;
background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(16px);
border-radius: 20px;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
border: 1px solid rgba(255, 255, 255, 0.3);
}
.header{
width: 100%;
text-align: center;
background: none;
}
.grid h1{
font-size: 4rem;
color: #c1f408;
text-align: center;
margin-bottom: 5px;
}
#question{
font-size: 2.2rem;
color: #753806;
margin-bottom: 20px;
text-align: left;
width: 100%;
}
.buttons{
display: flex;
flex-direction: column;
gap: 10px;
width: 100%;
}
.btn-flex{
background-color: transparent;
border: 2px solid #ffffff;
border-radius: 10px;
padding: 15px;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
text-align: left;
color: #ffffff;
width: 100%;
}
.btn-flex:hover{
background-color: #042a01;
color: #ffffff;
border: 2px solid #47ef47;
}
#progress{
font-size: 1.5rem;
color: #520b14;
text-align: center;
margin-top: 20px;
}