-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuizPage.css
121 lines (100 loc) · 1.78 KB
/
QuizPage.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins",sans-serif;
}
header{
position: absolute;
top: 0;
left: 0;
width: 100%;
padding: 32px 110px;
display: flex;
justify-content: space-between;
align-items: center;
display: flex;
/* padding: 20px; */
z-index: 10000;
}
header .logo {
color: #fff;
font-weight: 700;
text-decoration: none;
font-size: 2em;
text-transform: uppercase;
letter-spacing: 2px;
margin-left: -138px;
}
header ul{
display: flex;
justify-content: center;
align-items: center;
}
header ul li{
list-style: none;
margin-left: 20px;
}
header ul li a{
text-decoration: none;
padding: 6px 15px;
color: #fff;
border-radius: 20px;
}
header ul li a:hover,
header ul li a.active {
background: #fff;
color: #105530;
}
.collapse {
justify-content: flex-end;
}
.navbar-toggler {
background-color: #fff !important;
}
.main {
height: 100%;
display: flex;
flex-wrap: wrap;
margin: 5%;
margin-top: 20%;
}
.audio {
width: 165px;
height:10px;
display: flex;
flex-direction: column;
/* flex-wrap: wrap; */
justify-content: center;
align-items: center;
padding: 0.3em;
color: #fff;
flex: 1 1 250px;
margin: 0.6em;
border-radius: 15px;
padding: 3%;
padding-top: 4%;
}
.audio img {
width: 210px;
height: 210px;
margin: 0.5em;
border-radius: 13%;
cursor: pointer;
}
.card:hover .audio {
transform: translateY(0);
}
.audio h2 {
font-weight: 580;
font-size: 80%;
margin: 0.5em;
text-align: center;
}
.audio p{
font-size: 90%;
font-weight: 580;
text-align: center;
margin: 0.5em;
margin-top: -1%;
}