-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
71 lines (61 loc) · 1.02 KB
/
styles.css
File metadata and controls
71 lines (61 loc) · 1.02 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
/* AdminSidebar.css */
.admin-sidebar {
display: flex;
flex-direction: column;
width: 280px;
height: 100vh;
background-color: #f9a43a;
color: #fff;
padding: 20px;
box-sizing: border-box;
position: fixed;
top: 0;
left: 0;
}
.sidebar-header {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40px;
}
.un-underlined {
text-decoration: none;
}
.link-text {
margin: 10px;
}
.logo {
height: 50px;
margin-bottom: 10px;
}
.sidebar-nav {
display: flex;
flex-direction: column;
margin-bottom: auto;
}
.sidebar-link {
font-size: 18px;
color: #ffffff;
text-decoration: none;
transition: color 0.2s ease;
display: flex;
align-items: center;
}
.sidebar-link:hover {
color: #1a202c;
}
.sidebar-footer {
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.admin-main-content {
flex: 1;
margin-left: 330px;
margin-top: 20px;
margin-right: 30px;
}
.admin-main-content-title {
margin-top: 40px;
margin-bottom: 40px;
margin-left: 20px;
}