-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.css
More file actions
121 lines (103 loc) · 1.74 KB
/
menu.css
File metadata and controls
121 lines (103 loc) · 1.74 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
119
120
121
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
}
a {
text-decoration: none;
color: inherit;
}
ul {
list-style: none;
}
header {
display: flex;
justify-content: center;
align-items: center;
height: 100px;
background-color: #333;
}
header img {
width: 100px;
height: auto;
margin-right: 10px;
}
nav ul {
display: flex;
justify-content: center;
align-items: center;
}
nav li {
margin: 0 10px;
}
nav a {
font-size: 18px;
font-weight: bold;
color: white;
}
.logo h1 {
color: #fff;
}
/* Banner Styles */
.banner {
background-image: url("https://images.unsplash.com/photo-1526630274442-fd87f8b55314");
background-size: cover;
background-position: center;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
}
.banner h1 {
font-size: 60px;
color: #fff;
text-shadow: 2px 2px #333;
text-align: center;
}
/* Section Styles */
section {
padding: 40px;
}
section h2 {
font-size: 36px;
font-weight: bold;
margin-bottom: 20px;
}
section p {
font-size: 18px;
line-height: 1.5;
margin-bottom: 20px;
}
section .button {
display: inline-block;
padding: 10px 20px;
background-color: #333;
color: #fff;
border-radius: 5px;
font-size: 18px;
transition: all 0.3s ease;
}
section .button:hover {
background-color: #666;
}
/* Footer Styles */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
footer p {
font-size: 14px;
}
footer a {
color: #fff;
font-weight: bold;
text-decoration: underline;
}