57 lines
616 B
SCSS
57 lines
616 B
SCSS
@import "fonts";
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: "Urbanist", sans-serif;
|
|
font-weight: bolder;
|
|
}
|
|
p,
|
|
li,
|
|
span {
|
|
font-family: "Rubik", sans-serif;
|
|
font-weight: normal;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: blue !important;
|
|
|
|
&:visited {
|
|
color: blue;
|
|
}
|
|
|
|
&:hover {
|
|
color: blueviolet;
|
|
}
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.gray {
|
|
color: gray;
|
|
}
|
|
|
|
.hover-help {
|
|
&:hover {
|
|
cursor: help;
|
|
}
|
|
border-bottom: 1px double rgb(171, 167, 167);
|
|
}
|
|
|
|
.page #content {
|
|
img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
|
|
.monospace {
|
|
font-variant-numeric: tabular-nums;
|
|
}
|