39 lines
583 B
CSS
39 lines
583 B
CSS
|
.index,
|
||
|
.results {
|
||
|
|
||
|
h1,
|
||
|
h2,
|
||
|
p {
|
||
|
color: var(--f-color);
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
font-size: 2.75rem;
|
||
|
font-weight: 700;
|
||
|
margin: 1rem 0;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
color: var(--fs-color);
|
||
|
font-size: 1.15rem;
|
||
|
font-weight: 300;
|
||
|
line-height: 1.65rem;
|
||
|
margin: 0 0 1rem 0;
|
||
|
|
||
|
a {
|
||
|
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(--f-color);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|