From f222667b0ddefa8c510291eca0007042b517aac5 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 12 Dec 2022 08:29:38 -0500 Subject: [PATCH] fix resume --- resume/index.html | 203 +++------------------------------------------- resume/style.css | 190 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 202 insertions(+), 191 deletions(-) create mode 100644 resume/style.css diff --git a/resume/index.html b/resume/index.html index aa73637..fe0915b 100644 --- a/resume/index.html +++ b/resume/index.html @@ -5,204 +5,23 @@ Christopher Edwards - + + + - + +
- Chris Edwards + Chris Edwards

CONTACT

@@ -213,7 +32,7 @@
  • - edwards.christophermichael@gmail.com + chris@chrisedwards.tech
  • SKILLS

    @@ -241,9 +60,11 @@
    • Full Stack Web Developer Certification |
    • -
      • - Southern Careers Institute powered by Woz-U |
      • -
      +
      +
    • + Southern Careers Institute powered by Woz-U | +
    • +
    • Oct 2019 - Aug 2020
    diff --git a/resume/style.css b/resume/style.css new file mode 100644 index 0000000..1c9daa3 --- /dev/null +++ b/resume/style.css @@ -0,0 +1,190 @@ +body { + font-family: 'Open Sans', sans-serif; + + height: 100vh; + box-sizing: border-box +} + +#img { + width: 15vw; + margin: auto; + padding: 10%; +} +hr{ + width:15vw !important; + height: .1rem !important +} +ul{ + margin-left: 2% +} +#col { + display: flex; + height: 100vh +} + +#col1 { + background-color: #2c2c2c; + width: 30vw; + min-height: 100vh; + justify-content: center; + justify-items: center; + color: white; + flex-direction: column; + overflow: auto; + word-wrap: break-word; + +} + +#col2 { + + flex-direction: column; + width: 100vw; + height: 100vh; + justify-content: center; + justify-items: center; + overflow: auto; + text-align: center; + +} + +#col1 a { + color: white; + text-decoration: none; +} + +#col1 hr { + width: 75%; + height: .5px; + margin-left: 0; +} + +#info { + font-size: 3vw; + margin-left: 2vw; + margin-bottom: 150px; +} + + +#info ul { + margin-left: -10vw; + list-style-type: none; + max-width: 85%; + word-wrap: break-word; + font-size: 1.5vw; +} + +@media only screen and (min-width: 600px) { + + /* For tablets: */ + #info ul { + margin-left: -2.2vw; + list-style-type: none; + max-width: 85%; + word-wrap: break-word; + font-size: 1.5vw; + } + + #contact { + margin-left: -50px; + } + + #tell { + padding-left: 2vw; + background-image: url(phone.svg); + background-position: 0 0; + background-size: 1.5vw; + background-repeat: no-repeat; + } + + #mail { + padding-left: 2vw; + background-image: url(mail.svg); + background-position: 0 0; + background-size: 1.5vw; + background-repeat: no-repeat; + + } + + #map { + padding-left: 2vw; + background-image: url(map.svg); + background-position: 0 0; + background-size: 1.5vw; + background-repeat: no-repeat; + } + +} + +@media only screen and (min-width: 768px) { + + /* For desktop: */ + #info ul { + margin-left: -1.5vw; + list-style-type: none; + max-width: 90%; + word-wrap: break-word; + font-size: 1.5vw; + } + + #contact { + margin-left: 2vw; + } +} + +.head { + font-weight: bolder; + font-size: 2.3vw; +} + +.sm_head { + font-weight: 550; +} + +#skills { + list-style-type: disc !important; + color: white; +} + +#name { + font-size: 5vw; + text-align: center; + margin: auto; + padding-top: 5%; +} + +#pitch { + font-size: 2.75vw; + text-align: center; +} + + +#tell { + padding-left: 2vw; + background-image: url(phone.svg); + background-position: 0 0; + background-size: 1.5vw; + background-repeat: no-repeat; +} + +#mail { + padding-left: 2vw; + background-image: url(mail.svg); + background-position: 0 0; + background-size: 1.5vw; + background-repeat: no-repeat; + +} + +#map { + padding-left: 2vw; + background-image: url(map.svg); + background-position: 0 0; + background-size: 1.5vw; + background-repeat: no-repeat; +} + +#summery { + font-size: 2vw; + margin: 15px; + margin-bottom: 150px; +} \ No newline at end of file