duckscript/docs/assets/css/style.scss

67 lines
1 KiB
SCSS
Raw Normal View History

2019-12-30 10:45:28 +00:00
---
---
2021-07-23 13:43:51 +00:00
@import "jekyll-theme-cayman";
2019-12-30 10:45:28 +00:00
body {
width: 100%;
display: flex;
flex-direction: column;
.page-header {
flex-grow: 0;
width: 100%;
}
.main-content {
flex-grow: 1;
width: 100%;
max-width: 100%;
margin: 0;
}
.site-footer-credits {
display: none;
}
.site {
display: flex;
flex-direction: row;
.site-nav {
flex-grow: 0;
font-size: 14px;
min-width: 245px;
padding-top: 37px;
ul ul {
padding-left: 10px;
list-style-type: disc;
}
}
.site-content {
flex-grow: 1;
overflow-x: hidden;
}
}
@media screen and (max-width: 800px) {
.main-content {
padding: 0;
}
.site {
display: block;
.site-content {
padding: 0 1rem;
}
}
.site-footer {
padding: 1rem;
}
}
}