Files
Portfolio/src/portfolio/styling/intro.module.scss

93 lines
1.3 KiB
SCSS

@import "@/src/styles/helpers.scss";
.section {
@include fullPage;
@include darkSection;
@include regularFont;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: $largeGap;
}
.topBar {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
column-gap: $largeGap;
row-gap: $smallGap;
margin: 1em 1.5em;
& > div {
display: flex;
flex-direction: row;
flex-wrap: wrap;
column-gap: $mediumGap;
* {
margin: auto 0;
}
a {
color: $white;
text-decoration: none;
&:hover {
color: $strong_red;
font-style: italic;
}
}
}
.left{
margin-left: auto;
}
.logoContainer {
width: 2.5em;
height: 2.5em;
position: relative;
@include nextImg;
}
}
.mainContent {
margin: 0;
display: flex;
flex-direction: row;
justify-content: space-around;
flex-wrap: wrap;
padding: 0 15px;
font-weight: 350;
font-size: 0.7em;
.text {
line-height: 1.5;
font-size: 2em;
}
.larger {
font-size: 1.5em;
}
.greeting {
color: $strong_red;
font-style: italic;
}
}
.profileContainer {
max-width: 35em;
height: max-content;
display: flex;
position: relative;
@include nextImg;
}