Files
marvinblum/assets/scss/main.scss
2024-05-28 17:15:26 +02:00

72 lines
979 B
SCSS

@import "_font.scss";
$borderRadius: 8px;
$textColor: #0f0f0f;
$highlight: #82b3db;
* {
box-sizing: border-box;
font-family: "Open Sans", sans-serif;
font-size: 18px;
line-height: 1.5;
color: $textColor;
}
body {
padding: 80px 40px;
max-width: 1000px;
margin: 0 auto;
}
h1 {
font-size: 32px;
margin: 0 0 40px 0;
font-weight: normal;
}
a {
text-decoration: none;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 0 40px 0;
.contact {
display: inline-block;
padding: 8px 16px;
border-radius: $borderRadius;
border: 1px solid $highlight;
color: $textColor;
transition: all 0.3s;
color: $highlight;
&:hover {
background: $highlight;
color: #fff;
}
}
}
.intro {
article {
display: flex;
gap: 40px;
justify-content: flex-start;
align-items: center;
h1 {
margin: 0;
}
img {
max-width: 256px;
max-height: 256px;
aspect-ratio: 1;
border-radius: $borderRadius;
}
}
}