Add hire me page

This commit is contained in:
Henry Hiles 2023-06-13 12:34:53 -04:00
parent 0b79a849e7
commit 79e3ecc72d
12 changed files with 158 additions and 7 deletions

25
src/styles/Bot.module.css Normal file
View file

@ -0,0 +1,25 @@
.discord {
display: flex;
flex-direction: column;
align-items: center;
width: unset;
padding: 3rem;
max-width: 90%;
}
.discord button {
width: 100%;
max-width: 40rem;
}
.title {
font-size: 2.5rem;
margin: 0;
text-align: center;
}
.description {
font-size: 1.5rem;
max-width: 40rem;
text-align: justify;
}

View file

@ -8,6 +8,7 @@
text-decoration: none;
white-space: nowrap;
height: 100%;
font-size: 1.5rem;
color: var(--text-primary);
justify-content: center;
}

View file

@ -0,0 +1,30 @@
.hire {
display: flex;
flex-direction: column;
align-items: center;
padding: 3rem;
}
.hireTitle {
font-size: 2rem;
margin: 0;
}
.jobs {
margin: 0 auto 2rem;
font-size: 1.5rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.hire button {
width: 100%;
max-width: 40rem;
}
.jobDescription {
font-size: 1.5rem;
max-width: 40rem;
text-align: justify;
}

View file

@ -8,3 +8,7 @@ main > section > :is(h1, h2) {
text-align: center;
text-transform: uppercase;
}
main {
padding-bottom: 10rem;
}

View file

@ -37,8 +37,8 @@ main {
display: flex;
gap: 3rem;
flex-direction: column;
padding-bottom: 2rem;
align-items: center;
padding-bottom: 10em;
}
main > section {
@ -61,3 +61,11 @@ main > section:hover {
scroll-margin: 6rem;
}
}
a {
color: #4f94e5;
}
a:not(:hover) {
text-decoration: none;
}

View file

@ -14,7 +14,7 @@
.nav section {
display: flex;
align-items: center;
gap: 0.5em;
gap: 0.75em;
}
.nav :is(svg, img) {
@ -50,8 +50,8 @@
}
}
@media (max-width: 400px) {
#logo + a {
@media (max-width: 430px) {
a.home {
display: none;
}
}