Finished first draft of Resume page.
This commit is contained in:
parent
3f38f601e9
commit
b6b011918e
30 changed files with 719 additions and 518 deletions
|
|
@ -10,112 +10,44 @@
|
|||
}
|
||||
|
||||
body {
|
||||
color: var(--primary-colour);
|
||||
color: var(--dark-grey);
|
||||
font-family: var(--general-sans);
|
||||
}
|
||||
|
||||
.page-menu {
|
||||
align-items: center;
|
||||
background-color: var(--background-colour);
|
||||
color: var(--primary-colour);
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
font-size: 0.6rem;
|
||||
font-weight: 400;
|
||||
justify-content: center;
|
||||
padding: 10px;
|
||||
position: sticky;
|
||||
text-align: center;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
li {
|
||||
/* Remove the default styles for grids */
|
||||
border: none !important;
|
||||
|
||||
&>*:not(:last-child)::after {
|
||||
content: " | ";
|
||||
margin: 0 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.hero {
|
||||
align-items: center;
|
||||
background-image: url('../media/face-1276x1276.webp');
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 50vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
z-index: -5 !important;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(255, 255, 255, 0.95);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: var(--general-serif);
|
||||
font-size: 5rem;
|
||||
font-variation-settings: "opsz" 8;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.metadetails {
|
||||
border-bottom: 0.5px solid lightgray;
|
||||
border-top: 0.5px solid lightgray;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 5rem;
|
||||
|
||||
img {
|
||||
height: 2.5rem;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
color: var(--primary-colour);
|
||||
font-family: var(--general-sans);
|
||||
font-size: 0.8rem;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
&:hover {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.twemoji {
|
||||
--md-icon-size: 1.2rem !important;
|
||||
vertical-align: middle !important;
|
||||
}
|
||||
}
|
||||
|
||||
/*****************************/
|
||||
|
||||
#experience {
|
||||
color: var(--primary-colour);
|
||||
min-height: 80vh;
|
||||
|
||||
|
||||
&>div {
|
||||
margin: 30px;
|
||||
padding: 1.2rem;
|
||||
|
||||
li {
|
||||
border: none;
|
||||
|
||||
&:hover {
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
.cards {
|
||||
padding: 1rem;
|
||||
|
||||
h2 {
|
||||
color: var(--primary-colour);
|
||||
color: var(--dark-grey);
|
||||
font-family: var(--general-sans);
|
||||
font-size: 2.5rem;
|
||||
margin: 0 0 -18px 0;
|
||||
line-height: 1;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.company {
|
||||
font-family: var(--general-sans);
|
||||
font-weight: 400;
|
||||
font-size: 1.2rem;
|
||||
margin: 0;
|
||||
|
||||
span {
|
||||
font-size: 0.7rem;
|
||||
|
|
@ -127,6 +59,7 @@ body {
|
|||
.job-blurb {
|
||||
font-family: var(--general-serif);
|
||||
font-size: 1.2rem;
|
||||
font-variation-settings: "opsz" 8;
|
||||
font-weight: 700;
|
||||
line-height: 1.5;
|
||||
margin-bottom: 30px;
|
||||
|
|
@ -135,9 +68,11 @@ body {
|
|||
|
||||
.job-achievements {
|
||||
font-family: var(--general-serif);
|
||||
font-variation-settings: "opsz" 8;
|
||||
|
||||
h5 {
|
||||
color: var(--primary-colour);
|
||||
color: var(--dark-grey);
|
||||
cursor: pointer;
|
||||
font-size: 0.9rem;
|
||||
margin: 0;
|
||||
text-transform: none;
|
||||
|
|
@ -168,7 +103,7 @@ body {
|
|||
position: relative;
|
||||
|
||||
&::after {
|
||||
background: rgba(255, 255, 255, 0.70);
|
||||
background: rgba(250, 250, 250, 0.70);
|
||||
bottom: 0;
|
||||
content: '';
|
||||
left: 0;
|
||||
|
|
@ -181,23 +116,55 @@ body {
|
|||
}
|
||||
}
|
||||
|
||||
#demo {
|
||||
margin: 0 2.5rem;
|
||||
#hero {
|
||||
align-items: center;
|
||||
background-image: url('../media/face-1276x1276.webp');
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 50vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
z-index: -5;
|
||||
|
||||
.cards {
|
||||
&::after {
|
||||
background: rgba(250, 250, 250, 0.95);
|
||||
bottom: 0;
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
pointer-events: none;
|
||||
right: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.twemoji {
|
||||
font-size: 3rem;
|
||||
margin-bottom: 8px;
|
||||
.title {
|
||||
font-family: var(--general-serif);
|
||||
font-size: 5rem;
|
||||
font-variation-settings: "opsz" 8;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.metadetails {
|
||||
border-bottom: 0.5px solid var(--light-grey);
|
||||
border-top: 0.5px solid var(--light-grey);
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 5rem;
|
||||
margin-top: 1rem;
|
||||
|
||||
figcaption {
|
||||
color: var(--dark-grey);
|
||||
font-family: var(--general-sans);
|
||||
font-size: 0.8rem;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
ul li {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 1.8rem;
|
||||
height: 300px;
|
||||
justify-content: center;
|
||||
img {
|
||||
height: 2.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -208,45 +175,179 @@ body {
|
|||
.cards {
|
||||
|
||||
ul li {
|
||||
background-color: var(--tertiary-colour);
|
||||
border: none;
|
||||
background-color: var(--light-grey);
|
||||
|
||||
&:hover {
|
||||
box-shadow: none;
|
||||
figure {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
flex-wrap: wrap;
|
||||
margin: 0;
|
||||
justify-content: center;
|
||||
|
||||
|
||||
img {
|
||||
max-width: 150px;
|
||||
width: 30%;
|
||||
min-width: 100px;
|
||||
height: auto;
|
||||
display: block;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
color: var(--dark-grey);
|
||||
flex: 1 1 200px;
|
||||
font-family: var(--general-sans);
|
||||
font-size: 0.8rem;
|
||||
font-style: normal;
|
||||
margin: 0;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.prefooter {
|
||||
align-items: flex-start;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 2rem;
|
||||
justify-content: center;
|
||||
margin-top: 1.3rem;
|
||||
margin-bottom: 0.5rem;
|
||||
text-align: center;
|
||||
#skills {
|
||||
margin: 2.5rem;
|
||||
|
||||
div {
|
||||
img {
|
||||
height: 1.2rem;
|
||||
.cards {
|
||||
|
||||
ul li {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 1.8rem;
|
||||
justify-content: flex-start;
|
||||
padding: 1rem;
|
||||
|
||||
.technical-icons {
|
||||
align-items: center;
|
||||
column-gap: 1.5rem;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
row-gap: 1.5rem;
|
||||
|
||||
.technical {
|
||||
|
||||
span {
|
||||
align-items: flex-end;
|
||||
display: flex;
|
||||
font-size: 0.7rem;
|
||||
|
||||
img,
|
||||
svg {
|
||||
height: 1rem;
|
||||
margin-right: 5px;
|
||||
max-height: 1rem;
|
||||
max-width: 1rem;
|
||||
object-fit: contain;
|
||||
vertical-align: middle;
|
||||
width: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.writing-types {
|
||||
font-size: 0.8rem;
|
||||
justify-content: center;
|
||||
margin-bottom: 0.7rem;
|
||||
text-align: left;
|
||||
|
||||
svg {
|
||||
height: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
.media-tools {
|
||||
figure {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
flex-wrap: wrap;
|
||||
margin: 0;
|
||||
justify-content: center;
|
||||
|
||||
|
||||
img {
|
||||
max-width: 150px;
|
||||
width: 20%;
|
||||
min-width: 100px;
|
||||
height: auto;
|
||||
display: block;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
color: var(--dark-grey);
|
||||
flex: 1 1 200px;
|
||||
font-family: var(--general-sans);
|
||||
font-size: 0.8rem;
|
||||
font-style: normal;
|
||||
margin: 0;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ai {
|
||||
grid-gap: 0.4rem;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
grid-template-rows: repeat(2, 1fr);
|
||||
margin-top: 0;
|
||||
|
||||
img {
|
||||
max-width: 150px;
|
||||
width: 15%;
|
||||
min-width: 100px;
|
||||
height: auto;
|
||||
display: block;
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
div:last-child {
|
||||
img {
|
||||
height: 1.5rem;
|
||||
}
|
||||
h3 {
|
||||
border-bottom: 2px solid var(--dark-grey);
|
||||
color: var(--dark-grey);
|
||||
font-family: var(--general-serif);
|
||||
font-size: 1.2rem;
|
||||
font-variation-settings: "opsz" 8;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
||||
.faq-container {
|
||||
position: relative;
|
||||
|
||||
#faq-toggle {
|
||||
&:checked {
|
||||
&+.question-icon {
|
||||
.icon.question {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.icon.close {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
&~.faq {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.faq {
|
||||
background: var(--background-colour);
|
||||
border: 2px solid var(--primary-colour);
|
||||
background-color: var(--neutral-grey);
|
||||
border: 2px solid var(--dark-grey);
|
||||
border-radius: 5px;
|
||||
bottom: 50px;
|
||||
opacity: 0;
|
||||
|
|
@ -255,31 +356,24 @@ body {
|
|||
right: 20px;
|
||||
transition: opacity 0.3s, visibility 0.3s;
|
||||
visibility: hidden;
|
||||
width: 300px;
|
||||
width: 400px;
|
||||
z-index: 999;
|
||||
|
||||
h3 {
|
||||
color: var(--primary-colour);
|
||||
color: var(--dark-grey);
|
||||
font-family: var(--general-serif);
|
||||
font-size: 1.2rem;
|
||||
font-variation-settings: "opsz" 8;
|
||||
}
|
||||
}
|
||||
|
||||
#faq-toggle:checked+.question-icon .icon.question {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
#faq-toggle:checked+.question-icon .icon.close {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#faq-toggle:checked~.faq {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
p {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.question-icon {
|
||||
align-items: center;
|
||||
bottom: 20px;
|
||||
bottom: 30px;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
|
@ -302,12 +396,143 @@ body {
|
|||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.visually-hidden {
|
||||
height: 1px;
|
||||
left: -9999px;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
.visually-hidden {
|
||||
height: 1px;
|
||||
left: -9999px;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
.modal-container {
|
||||
align-items: center;
|
||||
background-color: rgba(250, 250, 250, 0.9);
|
||||
display: none;
|
||||
height: 100%;
|
||||
justify-content: center;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: 999;
|
||||
|
||||
&.is-visible {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.modal {
|
||||
background-color: var(--neutral-grey);
|
||||
border: 2px solid var(--dark-grey);
|
||||
border-radius: 5px;
|
||||
height: 80vh;
|
||||
max-height: 1200px;
|
||||
max-width: 1200px;
|
||||
overflow: auto;
|
||||
position: relative;
|
||||
transition: opacity 0.3s, visibility 0.3s;
|
||||
width: 80vw;
|
||||
z-index: 999;
|
||||
|
||||
.body-image {
|
||||
border: 1px solid var(--light-grey);
|
||||
margin: 0 1rem;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: var(--light-grey);
|
||||
color: var(--dark-grey);
|
||||
cursor: pointer;
|
||||
border-radius: 5px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
margin-left: 1rem;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
h5 {
|
||||
color: var(--dark-grey);
|
||||
font-size: 0.8rem;
|
||||
font-weight: 900;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: square;
|
||||
|
||||
li {
|
||||
font-size: 1rem;
|
||||
;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
h5,
|
||||
ul,
|
||||
p {
|
||||
padding: 0 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.close-icon {
|
||||
position: absolute;
|
||||
right: 5vw;
|
||||
top: 5vh;
|
||||
|
||||
svg {
|
||||
height: 1.8rem;
|
||||
max-height: none;
|
||||
width: 1.8rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.prefooter {
|
||||
align-items: flex-start;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 2rem;
|
||||
justify-content: center;
|
||||
margin-top: 1.3rem;
|
||||
margin-bottom: 0.5rem;
|
||||
text-align: center;
|
||||
|
||||
div {
|
||||
img {
|
||||
height: 1.2rem;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
img {
|
||||
height: 1.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.section-menu {
|
||||
align-items: center;
|
||||
background-color: var(--neutral-grey);
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 400;
|
||||
justify-content: center;
|
||||
padding: 10px;
|
||||
position: sticky;
|
||||
text-align: center;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
|
||||
&>*:not(:last-child)::after {
|
||||
content: " | ";
|
||||
margin: 0 8px;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue