-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (82 loc) · 1.77 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
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,100&family=Raleway:wght@100&family=Zen+Kurenaido&display=swap');
*{
font-family: 'Lato', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Zen Kurenaido', sans-serif;
color: black;
}
.heading{
text-align: center;
font-weight: bolder;
font-size: 1.5rem;
display: flexbox;
text-overflow: clip;
width: 50%;
margin: auto;
padding: 1.5px 1.5px;
border-radius: 10px ;
border-color: black;
background-color: #9fa8da;
}
.sub-heading{
text-align: center;
font-weight: bolder;
font-size: 1.2rem;
display: flexbox;
border-radius: 5%;
width: 25%;
margin: 4% auto;
padding: 2px 2px;
background-color: #9fa8da;
}
.menu ul li {
color: black;
list-style: none;
text-align: center;
font-weight: bolder;
font-size: 1.2rem;
display: flexbox;
justify-content: center;
align-items: center;
width: 80%;
margin: 3% auto;
}
.menu ul li a:hover{
cursor: pointer;
color: black;
border:2px solid black;
padding: 0.1rem 0.1rem;
background-color: #9fa8da;
}
body{
background-color: #7986cb;
}
.menu ul li a{
text-decoration: none;
}
.quiz-form .container{
text-align: center;
font-size: 1.2rem;
font-weight: bold;
}
#output{
display: flexbox;
text-align: center;
align-items: center;
justify-content: center;
font-size: 1.3rem;
position: relative;
margin: 10rem;
}
#button{border-radius: 1rem; font-size: 1.2rem; padding: 0.rem; margin: 1vh 5vh; font-weight: bold; background-color: #9fa8da;
border-color: black;}
button:hover{cursor: pointer;}
.container{
height: 10vh;
width: 10vh;
margin: auto;
}
.side{
font-size: 1rem;
font-weight: bolder;
}