-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
88 lines (72 loc) · 1.22 KB
/
styles.css
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
84
85
86
87
88
/* css styles */
:root {
--color-primary: #2e89bf;
}
h1,
h2,
h3,
h4 {
color: var(--color-primary);
}
h1::after {
content: '';
display: block;
position: relative;
width: 50px;
border-bottom: 3px solid var(--color-primary);
padding-top: 10px;
}
/* Custom header */
.custom-header {
display: flex;
justify-content: flex-end;
align-items: center;
margin-bottom: 2rem;
gap: 20px;
width: 100%;
}
.custom-header .header-image {
width: 150px;
}
.custom-header svg {
min-width: 50px;
height: 40px;
}
/* Sidebar navigation */
#quarto-sidebar {
border-right: 1px solid var(--color-primary);
}
.sidebar-footer .sidebar-footer__logos {
display: flex;
align-items: center;
gap: 20px;
height: max-content;
margin-bottom: 2rem;
}
.sidebar-footer .infrastructure-logo {
width: 100px;
height: 100%;
object-fit: contain;
}
.sidebar-footer {
padding: 0 !important;
}
.sidebar-footer svg {
min-width: 50px;
height: 40px;
}
.sidebar-footer__label {
font-size: 0.8rem;
text-transform: uppercase;
line-height: 0;
margin: 0;
}
.sidebar-footer__author {
margin-top: 8px;
font-size: 0.875rem;
color: var(--bs-gray-700);
}
.nav-footer-center {
display: flex;
align-items: center;
}