Update design to single page layout for my portfolio

This commit is contained in:
Justin Nguyen
2020-12-22 03:26:55 -08:00
parent c3f51a4c11
commit f2ba6ae6af
21 changed files with 552 additions and 83 deletions

View File

@@ -290,7 +290,7 @@ mark {
display: flex;
flex-direction: column;
padding: 40px;
max-width: 864px;
max-width: 1024px;
min-height: 100vh;
border-right: 1px solid rgba(255, 255, 255, 0.1);

View File

@@ -77,7 +77,7 @@
}
&-cover {
border: 20px solid var(--accent);
border: 10px solid var(--accent);
background: transparent;
margin: 40px 0;
padding: 20px;

89
assets/css/section.css Normal file
View File

@@ -0,0 +1,89 @@
.sections {
width: 100%;
}
.section {
width: 100%;
&-header {
font-size: 1.8rem !important;
margin-top: 3em !important;
text-decoration: underline;
}
&-separator {
border: 2pt solid white;
}
&-cover {
border: 10px solid var(--accent);
background: transparent;
padding: 8px;
position: relative;
margin: auto;
/* Vertical Align */
top: 50%;
transform: translateY(-50%);
/* Resize */
display: block;
max-height: 80em;
width: auto;
height: auto;
@media (--tablet) {
top: auto;
transform: none;
max-height: 20em;
}
}
&-2col {
display: flex;
@media (--tablet) {
display: block;
}
}
&-2col-right {
flex-direction: row;
}
&-2col-left {
flex-direction: row-reverse;
}
&-2col-content {
flex: 300%;
margin-top: 0 !important;
}
&-2col-right > &-2col-content {
margin-left: 2em;
@media (--tablet) {
margin-left: 0;
}
}
&-2col-left > &-2col-content {
margin-right: 2em;
@media (--tablet) {
margin-right: 0;
}
}
}
.section > .post {
margin-top: 0;
padding-top: 0;
}
/* Remove hr between posts for sections that are .post */
.section > .post:not(.on-list) {
border-bottom: none;
}

View File

@@ -9,6 +9,7 @@
@import 'post.css';
@import 'pagination.css';
@import 'footer.css';
@import 'section.css';
@import 'prism.css';
@import 'syntax.css';