72 lines
1.0 KiB
SCSS
72 lines
1.0 KiB
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;
|
|
// }
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;0,800;1,400;1,700;1,800&display=swap');
|
|
a {
|
|
text-decoration: none;
|
|
color: blue !important;
|
|
|
|
&:visited {
|
|
color: blue;
|
|
}
|
|
|
|
&:hover {
|
|
color: blueviolet;
|
|
}
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
// font-family: serif;
|
|
font-family: 'Poppins', sans-serif;
|
|
text-align: justify;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
|
|
.markdown-body{
|
|
font-family: serif;
|
|
}
|
|
|
|
.monospace {
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
#sponsor-notice{
|
|
background-color: rgb(253, 204, 173);
|
|
width:max-content;
|
|
margin:auto;
|
|
padding: 5px;
|
|
} |