-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.css
More file actions
66 lines (56 loc) · 1.38 KB
/
index.css
File metadata and controls
66 lines (56 loc) · 1.38 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
body {
margin: 0;
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: #f8f9fa;
}
.sidebar {
background-color: #343a40;
padding-top: 20px;
}
/* The "min-width" comes from the "min-width" media attribute on "main-content" */
@media (min-width: 768px) {
.sidebar {
min-height: calc(100vh - 56px);
}
}
/* Removed color and background styles as they are set inline in Sidebar.js */
/* Kept basic layout and transition styles */
.sidebar .nav-link {
/* Target .nav-link added by react-bootstrap */
text-decoration: none;
display: block;
padding: 10px 15px;
transition: all 0.3s;
}
/* Kept only the :hover style */
.sidebar .nav-link:hover {
color: #fff !important; /* Use !important to override potential inline styles */
background-color: rgba(255, 255, 255, 0.1);
}
/* Icon style - target icon inside the link */
.sidebar .nav-link i {
margin-right: 10px;
}
.main-content {
padding: 20px;
}
.card {
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
margin-bottom: 20px;
}
.dashboard-card {
text-align: center;
padding: 20px;
}
.dashboard-icon {
font-size: 2rem;
margin-bottom: 10px;
}
.form-wrapper {
max-width: 600px;
margin: 0 auto;
}