-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
90 lines (72 loc) · 1.21 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
89
90
/* css styles */
h1, h2 {
margin-top: 0;
border-bottom: 0;
}
h1 {
font-size: 1.6rem;
}
h2 {
font-size: 1.2rem;
}
header > .quarto-title h1 {
font-size: 2.5rem;
font-weight: 800;
}
#navbarCollapse {
background-color: #ffffff;
}
#quarto-header nav.navbar {
padding: 0;
background-color: #ffffff;
border-color: #ffffff;
}
a.navbar-brand-logo > img {
max-height: 2rem;
margin: 0.5rem;
}
.mermaid svg {
display: block;
margin: auto;
}
.cluster-label {
padding-bottom: 60px;
}
#fig-architecture path[class*="LS-titlebox"] {
display: none;
}
#fig-architecture .nodes > g[id*="titlebox"] > rect.label-container {
fill: none;
stroke: none;
}
.home .title {
text-align: center;
}
.card {
margin: 1rem;
padding-left: 1rem;
padding-right: 1rem;
padding-bottom: 1rem;
}
.card .card-title {
font-size: 1.2rem;
font-weight: 800;
margin-bottom: 0.5rem;
}
.card .card-text {
font-size: 1rem;
}
/* expand background to full width, beyond the container */
.alt-background {
background-color: #e7f9ec;
position: relative;
}
.alt-background:before {
content: "";
background-color: #e7f9ec;
position: absolute;
height: 100%;
width: 10000px;
left: -5000px;
z-index: -1;
}