-
Notifications
You must be signed in to change notification settings - Fork 1
/
quizStyle.css
76 lines (67 loc) · 1.45 KB
/
quizStyle.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
body {
background-color: #F3FAB6;
}
header {
background-color: #005A31;
color: white;
text-align: center;
font-family: 'Aladin';
letter-spacing: 4px;
font-size: 40px;
padding: 0.5em 0.5em 0 0.5em;
}
#infos{
display: flex;
justify-content: space-between;
}
.buttons-container button {
background-color: #009929;
color: #f5f649;
text-align: center;
margin-left: 2em;
margin-right: 2em;
margin-top: 1em;
margin-bottom: 1em;
border-radius: 10px;
transition-duration: 0.4s;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
cursor: pointer;
font-family: 'Aladin';
font-size: 22px;
letter-spacing: 2px;
width: 12em;
height: 6em;
}
.buttons-container button:hover {
background-color: #333;
color: white;
}
.buttons-container {
display: flex;
flex-direction: column;
/* Display children in a column */
align-items: center;
/* Center align children horizontally */
}
.button-row-container {
display: flex;
/* Display children in a row */
justify-content: center;
/* Center align children horizontally */
}
.text-container p {
font-family: 'Aladin';
font-size: 30px;
letter-spacing: 2px;
text-align: center;
background-color: white;
border: 1px solid black;
border-radius: 10px;
padding: 10px;
}
.text-container {
display: flex;
justify-content: center;
margin-top: 40px;
margin-bottom: 20px;
}