-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
71 lines (58 loc) · 1.21 KB
/
styles.css
File metadata and controls
71 lines (58 loc) · 1.21 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
/* css styles */
.center-normal {
text-align: center;
font-weight: normal;
}
/* Hide the search icon (magnifying glass) */
.navbar .navbar-search .form-control {
background-image: none !important;
padding-left: 0.75rem !important;
}
/* Custom Sidebar Styles */
.custom-sidebar {
position: fixed;
top: 0;
left: 0;
width: 230px;
height: 100vh;
background: #f8f9fa;
padding-top: 40px;
display: flex;
flex-direction: column;
align-items: flex-start;
border-right: 1px solid #e5e5e5;
box-shadow: 2px 0 6px rgba(0,0,0,0.03);
z-index: 1001;
}
.custom-sidebar .nav-link {
color: #3366cc;
text-decoration: none;
margin: 12px 0 0 24px;
font-size: 1.1em;
transition: color 0.2s, border-left 0.2s;
padding: 6px 0 6px 8px;
width: 90%;
border-left: 3px solid transparent;
}
.custom-sidebar .nav-link:hover {
color: #003366;
border-left: 3px solid #3366cc;
background: #eef2fa;
}
.custom-sidebar .nav-link.active {
font-weight: bold;
color: #222;
border-left: 3px solid #222;
background: #e9ecef;
}
.sidebar-logo {
height: 110px;
width: auto;
display: block;
}
.navbar .navbar-collapse {
justify-content: center !important;
}
.header-anchor {
display: none !important;
}