60 lines
1009 B
CSS
60 lines
1009 B
CSS
.index .hero {
|
|
padding: 6rem 0 2rem 0;
|
|
|
|
h1,
|
|
h2,
|
|
p {
|
|
color: var(--f-color);
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 4.25rem;
|
|
font-weight: 600;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
margin: .25rem 0;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.banner {
|
|
display: block;
|
|
width: fit-content;
|
|
color: var(--fs-color);
|
|
background: var(--q-color);
|
|
font-size: .95rem;
|
|
font-weight: 500;
|
|
padding: .35rem 1.25rem .4rem 1.25rem;
|
|
margin: 0 auto;
|
|
border: .1rem solid var(--br-color);
|
|
border-radius: var(--radius-full);
|
|
}
|
|
|
|
p {
|
|
font-size: 1.525rem;
|
|
font-weight: 300;
|
|
line-height: 2rem;
|
|
margin: 1.5rem 0 1rem 0.15rem;
|
|
}
|
|
|
|
a.pitch {
|
|
position: relative;
|
|
color: var(--s-color);
|
|
font-weight: 300;
|
|
|
|
&:after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 100%;
|
|
bottom: -1px;
|
|
left: 0;
|
|
right: 0;
|
|
border-bottom: 0.15rem dotted var(--fs-color);
|
|
}
|
|
}
|
|
}
|