-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublic_styles.css
62 lines (54 loc) · 1.03 KB
/
public_styles.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
body{
background-image: url(pexels-rok-romih-1746122-3848158.jpg)
}
/* Navigation Bar Styles */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #007bff;
color: #fff;
padding: 10px 20px;
}
.navbar-logo {
font-size: 20px;
font-weight: bold;
}
.navbar-menu {
list-style-type: none;
padding: 0;
margin: 0;
}
.navbar-menu li {
display: inline;
margin-right: 20px;
}
.navbar-menu li a {
color: #fff;
text-decoration: none;
padding: 5px 10px;
border-radius: 5px;
}
.navbar-menu li a:hover {
background-color: #0056b3;
text-decoration: none;
}
.navbar-account {
display: flex;
align-items: center;
font-size: 14px;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 0 20px;
}
/* Footer Styles */
.footer {
background-color: #f4f4f4;
padding: 20px;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}