-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.css
65 lines (53 loc) · 950 Bytes
/
admin.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
}
.banner {
position: relative;
}
.bg-image {
width: 100%;
height: auto;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.content {
position: relative;
z-index: 1;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgba(255, 255, 255, 0.9);
padding: 15px 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo {
width: 100px;
}
.navbar ul {
list-style: none;
display: flex;
}
.navbar ul li {
margin-right: 20px;
}
.navbar ul li:last-child {
margin-right: 0;
}
.navbar ul li a {
text-decoration: none;
color: #333;
font-weight: bold;
transition: color 0.3s ease;
}
.navbar ul li a:hover {
color: #3498db;
}