-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (70 loc) · 1.18 KB
/
style.css
File metadata and controls
85 lines (70 loc) · 1.18 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
* {
font-family: 'Poppins', sans-serif;
}
/* .page {
display: flex;
} */
.page .sidebar {
height: 100vh;
width: 308px;
background-color: #516FEB;
top: 0;
left: 0;
position: fixed;
}
.page .content {
height: 100vh;
margin-left: 308px;
}
.sidebar-header {
padding: 10px 15px;
}
.sidebar-admin-container {
display: flex;
flex-direction: column;
}
.admin-container {
max-width: 59px;
padding-top: 50px;
margin: 10px auto;
}
.admin-logo {
width: 100%;
height: auto;
}
.admin-name {
margin: 0px auto;
}
.admin {
color: white;
font-size: 24px;
font-weight: 500;
}
.nav-list {
list-style-type: none;
padding: 0px 20px;
margin: 30px;
width: 250px;
}
.nav-item {
padding: 10px 5px;
border-radius: 10px;
margin: 15px 0px;
width: 100%;
}
.nav-item:hover {
background-color: rgba(0, 0, 0, 0.1);
box-shadow: 0 0 0.4em rgba(255, 255, 255, 0.1);
cursor: pointer;
}
.nav-item.active {
background-color: white;
box-shadow: 0 0 0.4em rgba(255, 255, 255, 0.1);
cursor: pointer;
}
.nav-item.active .nav-link{
color: #516FEB;
}
.pgb {
background-color: #516FEB;
}