forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
27 lines (22 loc) · 895 Bytes
/
base.css
File metadata and controls
27 lines (22 loc) · 895 Bytes
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
html {
scroll-behavior: smooth;
}
.VPMenu .item.social-links {
justify-content: center;
}
.has-outline .nested {
padding-left: 0;
}
.has-outline .nested .outline-link::before {
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='5 6 12 8' width='10' height='13'%3E%3Cpath fill='black' d='M12.172 12L9.343 9.172l1.414-1.415L15 12l-4.243 4.243l-1.414-1.415z'%3E%3C/path%3E%3C/svg%3E");
margin: 0 5px;
opacity: 0.5;
transition: opacity 0.5s;
}
.dark .has-outline .nested .outline-link::before {
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='5 6 12 8' width='10' height='13'%3E%3Cpath fill='white' d='M12.172 12L9.343 9.172l1.414-1.415L15 12l-4.243 4.243l-1.414-1.415z'%3E%3C/path%3E%3C/svg%3E");
}
.has-outline .nested .outline-link.active::before,
.has-outline .nested .outline-link:hover::before {
opacity: 1;
}