-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu-style.css
62 lines (57 loc) · 1.3 KB
/
menu-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
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
body {
background-color: #f7dea6;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
height: 100vh;
overflow: hidden; /* Prevent content from overflowing the viewport */
}
/* Header Styling */
header {
position: fixed;
top: 30px; /* Lowered further to give space */
left: 0;
width: 100%;
height: 80px; /* Adjusted height */
display: flex;
justify-content: center;
align-items: center;
background: transparent;
z-index: 1000;
}
/* Main Content Styling */
main {
margin-top: 150px;
margin-bottom: 180px;
width: 80%;
max-width: 1000px;
overflow-y: scroll;
text-align: center; /* Center the text in the list */
}
/* Footer Styling */
footer {
position: fixed;
bottom: 0px; /* Raised the footer up by increasing bottom space */
left: 0;
width: 100%;
height: 80px; /* Adjusted height */
display: flex;
justify-content: center;
align-items: center;
background: transparent;
z-index: 1000;
}
/* Ensure SVG is responsive */
svg {
width: 100%;
height: auto;
}