-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (65 loc) · 1.21 KB
/
style.css
File metadata and controls
88 lines (65 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
72
73
74
75
76
77
78
79
80
81
82
83
.background {
background-color: #edddf0;
min-height: 100vh;
}
.text-title {
color: #766b78;
}
.button {
background-color: #766b78;
color: #504552;
border-radius: 5px;
transition: background-color 0.3s;
}
.button-small {
background-color: #766b78;
color: #504552;
border-radius: 5px;
transition: background-color 0.3s;
padding: 4px 7px;
}
.button-small:hover {
background-color: #413842;
}
.button:hover {
background-color: #413842;
}
.highlight {
background-color: yellow
}
.sidebar {
width: 450px;
background-color: #f8f9fa;
border-right: 1px solid #dee2e6;
height: 100vh;
position: fixed;
top: 0;
left: 0;
}
.sidebar.sidebar-narrow-unfoldable {
width: 280px;
}
.sidebar-header {
padding: 1rem;
font-weight: bold;
border-bottom: 1px solid #dee2e6;
}
.sidebar-nav {
list-style: none;
padding: 0;
margin: 0;
}
.sidebar-nav .nav-title {
font-size: 0.85rem;
color: #6c757d;
padding: 0.75rem 1rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.sidebar-nav .nav-item {
padding: 0.5rem 1rem;
}
.sidebar-nav .nav-link:hover {
background-color: #e9ecef;
color: #000;
}