Skip to content

Commit

Permalink
Added OpenResume
Browse files Browse the repository at this point in the history
  • Loading branch information
rbucinell committed Sep 8, 2023
1 parent 85c7e32 commit d2602d7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions public/css/rbucinell.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
--highlight: #FFAB1F;
--highlight-dark: #B37000;
--gray: #f0f0f0;
--gary-light: #dddddd;
--gray-light: #dddddd;
--white: #FFFFFF;
--black: #333333;
}
Expand Down Expand Up @@ -117,7 +117,7 @@ body.landingpage h1, h2, h3, h4, h5, h6 {
background-color: var(--primary);
}
.dropdown-menu > li > a:hover {
color: var(--gary-light)
color: var(--gray-light)
}
.dropdown-menu > li > a {
color: var(--black)
Expand Down
Binary file not shown.
8 changes: 4 additions & 4 deletions src/components/BannerComponent.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ const {id} = Astro.props;
---
<style>
.banner{
border: black;
border-style: ridge;
border-width: thin;
background-color: var(--primary-dark);
}
</style>
<div id={id} class="breadcrumb banner font-weight-bold">
<slot/>
<div id={id} class="banner font-weight-bold alert alert-info" role="alert">
<h5 class="center">
<slot/>
</h5>
</div>
4 changes: 2 additions & 2 deletions src/pages/code.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ const json = JSON.parse(JSON.stringify(response[0])).default;
---
<BaseLayout config={config}>
<BannerComponent id="github">
<a class="text-dark flex-fill list-group-action" href="http://github.com/rbucinell/" target="_blank" rel="noopener">
<i class="devicon-github-original display-5"/><span class="">Check out my Github for my latest code!</span>
<a class="flex-fill list-group-action text-dark" href="http://github.com/rbucinell/" target="_blank" rel="noopener">
<i class="devicon-github-original display-5"/>&nbsp;<span class="">Check out my Github for my latest code!</span>
</a>
</BannerComponent>
<ul id="codeList">
Expand Down
11 changes: 6 additions & 5 deletions src/pages/resume.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import BaseLayout from '../layouts/BaseLayout.astro';
import TechIconComponent from '../components/TechIconComponent.astro';
import ExperienceComponent from '../components/ExperienceComponent.astro';
import CollapsibleSection from '../components/CollapsibleSection.astro';
import BannerComponent from '../components/BannerComponent.astro';
const config = {
title: "Ryan Bucinell - Résumé",
Expand Down Expand Up @@ -30,11 +31,11 @@ const fdir = "img/websites/";
</style>
<BaseLayout config={config}>

<div class="alert alert-info" role="alert">
<h5 class="center">
<strong><i class="font-weight-bold d-inline" data-feather="file-text"/>&nbsp;</strong>Download a <a href="data/resume/Resume for Ryan Michael Bucinell.pdf" class="alert-link">PDF version</a> here.
</h5>
</div>
<BannerComponent id="downloadpdf">
<strong>&nbsp;</strong>Download PDF versions:
<a href="data/resume/Resume for Ryan Michael Bucinell.pdf" class="alert-link btn btn-outline-primary mx-3"><i class="font-weight-bold d-inline text-primary" data-feather="file-text"/>Standard PDF version</a>
<a href="data/resume/Resume for Ryan Michael Bucinell - Open Resume.pdf" class="alert-link btn btn-outline-secondary"><i class="font-weight-bold d-inline text-secondary" data-feather="file-text"/>&nbsp;Open Resume</a>
</BannerComponent>

<CollapsibleSection id="experience" title="Experience">
<ExperienceComponent title="Senior Software Engineer" company="Draft Kings" daterange="September 2022 - September 2023" img="img/resume/draftkings.png"
Expand Down

0 comments on commit d2602d7

Please sign in to comment.