145 lines
2.5 KiB
SCSS
145 lines
2.5 KiB
SCSS
@use "common/font.scss" as *;
|
|
|
|
body {
|
|
// Keep websites thin!
|
|
max-width: 800px;
|
|
margin: auto;
|
|
|
|
// Default font
|
|
font-family: $body-font;
|
|
|
|
// Default background color
|
|
background-color: #f7f7f7;
|
|
|
|
// Remove all link decoration
|
|
a {
|
|
text-decoration: none;
|
|
color: blue;
|
|
}
|
|
|
|
header {
|
|
font-family: $title-font;
|
|
|
|
.title-card {
|
|
margin: 1em;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
|
|
img {
|
|
width: 90px;
|
|
height: 90px;
|
|
}
|
|
div {
|
|
margin-left: 1em;
|
|
height: max-content;
|
|
.name {
|
|
margin: 0;
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
hr {
|
|
margin: 0;
|
|
}
|
|
ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
li {
|
|
list-style: none;
|
|
a {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
svg {
|
|
display: inline-block;
|
|
margin-right: 1px;
|
|
height: 1em;
|
|
width: 1em;
|
|
filter: invert(9%) sepia(97%) saturate(6581%) hue-rotate(247deg)
|
|
brightness(94%) contrast(144%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
nav {
|
|
ul {
|
|
padding: 0;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
li {
|
|
list-style-type: none;
|
|
font-weight: 500;
|
|
&:not(:first-child)::before {
|
|
content: " · ";
|
|
margin-left: 0.25em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
main {
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: $title-font;
|
|
border-bottom: 1px solid #d7dde3;
|
|
padding-bottom: 0.3em;
|
|
}
|
|
|
|
.page-title {
|
|
margin-bottom: 1em;
|
|
|
|
h1 {
|
|
margin-bottom: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
span {
|
|
font-family: $title-font;
|
|
font-size: 1.25em;
|
|
color: gray;
|
|
}
|
|
}
|
|
|
|
p,
|
|
li {
|
|
// font-size: 1.25rem;
|
|
}
|
|
|
|
p {
|
|
margin-top: 0;
|
|
margin-bottom: 16px;
|
|
padding: 0 0.25em;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
margin: auto;
|
|
max-width: 100%;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
pre {
|
|
width: 100%;
|
|
overflow: scroll;
|
|
border: 1px solid gray;
|
|
border-radius: 5px;
|
|
padding: 1em;
|
|
}
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
}
|
|
}
|