File size: 1,221 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

.sideBox{
    height: 100%;
}


#sideNavbar {
    font-family: 'Poppins', sans-serif;
    transition: 0.4s;
}
#sideNavbar ul {
   margin: 0;
   padding: 0.5rem 0 0.5rem 2rem;
   list-style: none;
}
#sideNavbar ul li a {
    padding: 0.6rem 0.8rem;
    display: block;
    font-size: 1.1rem;
    color: #878787;
    border-left: 3px solid transparent;
}
#sideNavbar ul li a:hover {
    text-decoration: none;
    color: #000;
    background-color: #EFF2F7;
}

.activePage{
    color: #000!important;
    background-color: #f1eeff!important;
    border-left: 3px solid #7255F6!important;
}
.activePage:hover {
    color: #000!important;
    background-color: #f1eeff!important;
    border-left: 3px solid #7255F6!important;
}
.iconC {
    margin-right: 5px;
}

.sideBrand {
    color: #000;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sideBrand h2 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0;
}
.sideBrnIcon {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7255F6;
    margin-right: 5px;
}