website/assets/css/style.css

73 lines
1.1 KiB
CSS
Raw Normal View History

@font-face {
font-family: "Ubuntu Medium";
src: url(../ttf/ubuntu-medium.ttf) format("truetype");
}
@font-face {
font-family: "Ubuntu Regular";
src: url(../ttf/ubuntu-regular.ttf) format("truetype");
}
2021-02-25 19:56:21 +01:00
* {
font-family: "Ubuntu Regular";
}
ul {
padding: 0 0 0 1rem;
2021-02-25 19:56:21 +01:00
}
code {
background-color: #eee;
border: 0.01rem solid #999;
2021-02-25 19:56:21 +01:00
padding: 0.1rem;
}
pre {
background-color: #eee;
border: 1px solid #999;
display: block;
padding: 0.5rem;
}
#table-of-contents {
position: sticky;
top: 0;
}
#content :is(h1, h2, h3, h4, h5, h6) {
display: inline;
border-bottom: 0.15rem solid #165578;
width: 100%;
padding-bottom: 0.1rem;
line-height: 1.75em;
}
#organizer {
display: flex;
flex-direction: column;
}
#content p {
flex-basis: auto;
text-align: justify;
text-justify: inter-word;
}
.sidebar {
flex-basis: auto;
}
@media only screen and (min-width: 768px) {
#organizer {
flex-direction: row;
}
#content {
flex-basis: 80%;
}
.sidebar {
flex-basis: 10%;
}
}