This commit is contained in:
2023-08-29 10:08:14 +02:00
parent 93895a5967
commit 35d081abc4
20 changed files with 715 additions and 43 deletions

14
sass/general.scss Normal file
View File

@ -0,0 +1,14 @@
.flex-col {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.flex-row {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}

17
sass/project.scss Normal file
View File

@ -0,0 +1,17 @@
.project-wrapper {
justify-content: start;
align-items: start;
}
.left-bar {
width: 15rem;
justify-content: start;
align-items: start;
border-right: thin solid var(--c-blue);
margin-right: 2.5rem;
padding: 0 2.5rem;
h2 {
padding-bottom: 2.5rem;
}
}

25
sass/project_list.scss Normal file
View File

@ -0,0 +1,25 @@
.project-list {
h1 {
margin-bottom: 2rem;
font-size: 2rem;
}
.project {
margin-bottom: 3rem;
.title {
text-decoration: none;
font-size: 1.2rem;
font-weight: bold;
}
.description {
font-style: italic;
margin-bottom: .5rem;
margin-top: .5rem;
}
hr {
margin-bottom: .5rem;
}
}
}

View File

@ -1,10 +1,3 @@
body {
--base-padding: .5rem 1rem;
--base-margin: 2rem;
--background: #111111;
--color: #ffffff;
}
* {
margin: 0;
padding: 0;
@ -62,7 +55,7 @@ nav {
a { color: var(--color); }
a:visited { color: var(--color); }
a:hover { color: red; }
a:hover { color: var(--a-hover); }
@media (min-width: 400px) {
nav .links {

14
sass/vars.scss Normal file
View File

@ -0,0 +1,14 @@
* {
--base-padding: .5rem 1rem;
--base-margin: 2rem;
--c-white: #ffffff;
--c-gray: #111111;
--c-red: #FF3A20;
--c-darkblue: #02081e;
--c-blue: #5B85AA;
--a-hover: var(--c-red);
--color: var(--c-white);
--background: var(--c-gray);
}