1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul-website synced 2024-10-31 21:33:09 +00:00
strimertul-website/themes/strimertul/assets/scss/layout.scss

123 lines
1.7 KiB
SCSS
Raw Normal View History

2023-01-11 13:36:19 +00:00
body {
background-color: $site-bg;
font-family: $inter;
color: $copy-color;
margin: 0;
padding: 0;
}
2023-02-18 00:04:20 +00:00
.maxw {
max-width: 1000px;
margin: 0 auto;
width: 100%;
}
2023-01-11 13:36:19 +00:00
a,
a:visited {
color: $teal11;
}
p {
2023-03-01 11:53:20 +00:00
line-height: 1.6;
2023-01-11 13:36:19 +00:00
margin: 5px 0;
2023-03-01 11:53:20 +00:00
margin-bottom: 1em;
2023-01-11 13:36:19 +00:00
}
.site-nav {
background-color: $gray2;
border-bottom: 2px solid $teal7;
display: flex;
align-items: stretch;
padding: 0 1em;
.appname {
display: flex;
gap: 5px;
font-size: 20px;
align-items: center;
font-family: $inter;
font-weight: 300;
}
nav {
display: flex;
flex: 1;
justify-content: flex-end;
align-items: stretch;
& > a {
color: $teal12;
display: flex;
align-items: center;
padding: 5px 14px;
text-decoration: none;
transition: all 60ms;
2023-02-18 00:04:20 +00:00
&.current {
background: $gray1;
pointer-events: none;
}
&:not(.current) {
&:hover {
background: $gray3;
box-shadow: inset 0 -2px $teal9;
}
2023-01-11 13:36:19 +00:00
}
}
}
@media only screen and (max-width: $mobile) {
flex-direction: column;
padding: 10px 0;
nav {
flex-direction: column;
}
}
}
2023-02-19 20:17:13 +00:00
a.appname {
2023-01-11 13:36:19 +00:00
padding: 10px;
2023-02-19 20:17:13 +00:00
text-decoration: none;
color: white;
2023-01-11 13:36:19 +00:00
}
.container {
max-width: 960px;
width: 100%;
margin: 0 auto;
}
2023-02-19 20:17:13 +00:00
.hidden {
display: none;
}
2023-02-28 16:59:26 +00:00
html,
body,
.content {
min-height: 100vh;
}
.content {
display: flex;
flex-direction: column;
}
2023-03-01 09:15:30 +00:00
h1,
h2,
h3,
h4,
h5,
h6 {
position: relative;
}
a.heading-anchor {
text-decoration: none;
position: absolute;
left: -0.9em;
font-weight: normal;
font-size: 0.9em;
top: 0.1em;
color: $gray8;
&:hover {
color: $teal9;
}
}