Finish adding Aboutme, projects, and socials pages
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
:root {
|
||||
--bg-color: #302050;
|
||||
--outline-color: #6040A0;
|
||||
--bg-highlight-color: #453075;
|
||||
--outline: 4px #6040A0 solid;
|
||||
--text-color: white;
|
||||
--font: sans-serif;
|
||||
color: var(--text-color);
|
||||
background-color: var(--bg-color);
|
||||
}
|
||||
@@ -9,25 +11,11 @@
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
height: 100dvh;
|
||||
width: 100dvw;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
}
|
||||
|
||||
main {
|
||||
display: flex;
|
||||
padding: 16px;
|
||||
gap: 8px;
|
||||
outline: 4px var(--outline-color) solid;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main > span {
|
||||
font-size: 32px;
|
||||
font-family: sans-serif;
|
||||
text-align: center;
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
main {
|
||||
font-family: var(--font);
|
||||
background: var(--bg-highlight-color);
|
||||
display: flex;
|
||||
padding: 16px;
|
||||
margin-inline: 32px;
|
||||
gap: 8px;
|
||||
outline: var(--outline);
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main > span {
|
||||
font-size: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
main > p {
|
||||
margin: 0;
|
||||
margin-top: 8px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
main > ul {
|
||||
margin: 0;
|
||||
}
|
||||
19
assets/css/links.css
Normal file
19
assets/css/links.css
Normal file
@@ -0,0 +1,19 @@
|
||||
#links {
|
||||
display: flex;
|
||||
width: 288px;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
#links > .link {
|
||||
flex: 1;
|
||||
font-family: var(--font);
|
||||
text-decoration: none;
|
||||
color: var(--text-color);
|
||||
outline: var(--outline);
|
||||
padding: 8px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#links > .link:hover {
|
||||
background: var(--bg-highlight-color);
|
||||
}
|
||||
38
assets/css/projects.css
Normal file
38
assets/css/projects.css
Normal file
@@ -0,0 +1,38 @@
|
||||
main {
|
||||
margin-inline: 32px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 32px;
|
||||
padding: 32px;
|
||||
outline: var(--outline);
|
||||
flex-wrap: wrap;
|
||||
background: var(--bg-highlight-color);
|
||||
}
|
||||
|
||||
a.container {
|
||||
background: var(--bg-color);
|
||||
font-family: var(--font);
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
padding: 16px;
|
||||
outline: var(--outline);
|
||||
|
||||
color: var(--text-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.container > .title {
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
a.container:hover > .title {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a.container > .description {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user