-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (100 loc) · 1.58 KB
/
style.css
File metadata and controls
118 lines (100 loc) · 1.58 KB
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
* {
box-sizing: border-box;
}
main {
max-width: 80%;
margin: 40px auto;
padding: 20px;
}
.image-container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 50px;
}
img {
width: 400px;
height: auto;
margin: 0;
}
html,
body {
margin: 0;
padding: 0;
min-height: 100vh;
}
body {
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
background-color: lavenderblush;
color: darkviolet;
line-height: 2;
}
header {
background-color: snow;
color: blueviolet;
text-align: center;
box-shadow: 0 2px 5px gray;
}
nav {
display: flex;
justify-content: center;
gap: 100px;
}
nav a {
color: pink;
text-decoration: none;
font-size: 30px;
font-weight: bold;
padding: 10px 20px;
border-radius: 10px;
}
nav a:hover {
background-color: lavenderblush;
cursor: pointer;
}
h1 {
color: magenta;
font-size: 48px;
text-align: center;
margin-bottom: 20px;
}
h4 {
color: magenta;
font-size: 34px;
text-align: center;
margin-bottom: 20px;
}
p {
color: magenta;
font-size: large;
text-align: center;
margin-bottom: 20px;
}
/* Bunny Quiz Specific */
.question {
text-align: center;
margin-bottom: 30px;
background-color: lightpink;
border-radius: 30px;
}
form {
text-align: center;
}
#submitBtn {
padding: 10px 30px;
font-size: 18px;
background-color: plum;
color: darkmagenta;
border: none;
cursor: pointer;
}
#submitBtn:hover {
background-color: lightpink;
}
#results {
margin-top: 30px;
padding: 20px;
background-color: lightpink;
border-radius: 10px;
}