website/src/styles/projects.scss

41 lines
534 B
SCSS
Raw Normal View History

/* layout */
.section {
height: 100vh;
scroll-snap-align: start;
display: flex;
justify-content: flex-start;
align-items: flex-start;
text-align: center;
flex-direction: column;
2023-11-05 23:02:42 +00:00
}
#projects {
2023-11-14 07:52:27 +00:00
header {
display: flex;
align-items: center;
justify-content: start;
margin: 2em;
2023-11-05 23:02:42 +00:00
2023-11-14 07:52:27 +00:00
svg.logo {
margin-right: 1em;
height: 3em;
width: 3em;
cursor: pointer;
}
2023-11-05 23:02:42 +00:00
2023-11-14 07:52:27 +00:00
h1 {
margin: 0px;
}
}
2023-11-05 23:02:42 +00:00
2023-11-14 07:52:27 +00:00
content {
display: flex;
height: 80%;
width: 60em;
margin-left: 6em;
}
2023-11-14 07:52:27 +00:00
@import './mobile/projects.scss';
}