winkekatze.tv/assets/scss/_start.scss
2022-01-16 03:16:34 +01:00

42 lines
755 B
SCSS

div.start {
margin: 0 auto;
padding: 50px 0px;
background: transparent;
display: flex;
.left {
flex: 45%;
text-align: center;
}
.right {
flex: 55%;
}
img {
max-height: 7dh;
max-width: 100%;
}
p, a{
color: $font_default;
font-size: $font_size_default;
}
code {
color: $font_accent_4;
font-size: $font_size_code;
}
h2 {
color: $font_accent_3;
font-size: $font_size_h2;
text-shadow: 0px 0px 1px black;
}
}
@media (max-width: $media_horizontal_breakpoint) {
div.start {
display: initial;
.left, .right {
text-align: center;
margin-top: 40px;
}
}
}