Compare commits

..

No commits in common. "bc273c3300248e7fc0bd886e86319803de5d794f" and "7bfee0841a65b8261eb5423104cb22ac95e2dc4c" have entirely different histories.

2 changed files with 4 additions and 13 deletions

View File

@ -4,7 +4,7 @@
"description": "Repo for my personal website", "description": "Repo for my personal website",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"dev": "astro dev", "start": "astro dev",
"build": "astro build" "build": "astro build"
}, },
"repository": { "repository": {

View File

@ -2,7 +2,7 @@
import BaseLayout from '../layouts/BaseLayout.astro'; import BaseLayout from '../layouts/BaseLayout.astro';
import { Markdown } from 'astro/components'; import { Markdown } from 'astro/components';
const resumeLink = 'https://git.thomaspcole.com/thomascole/Resume-MD/raw/branch/master/src/Resume.md'; const resumeLink = 'https://git.thomaspcole.com/thomascole/Resume-MD/raw/branch/master/Resume.md';
const response = await fetch(resumeLink); const response = await fetch(resumeLink);
const data = await response.text(); const data = await response.text();
@ -55,15 +55,6 @@ const data = await response.text();
place-content: center; place-content: center;
} }
// Hack to adjust some of the markdown content
#thomaspatrickcolegmailcom--704-771-2453{
font-size: 1em;
}
#work-experience{
margin-top: 8px;
}
@media (max-width: 1024px) { @media (max-width: 1024px) {
.md-container{ .md-container{
width: 95%; width: 95%;
@ -79,14 +70,14 @@ const data = await response.text();
<h2 class="card-header-title no-margin"> <h2 class="card-header-title no-margin">
Resume Resume
</h2> </h2>
<!-- <a class="card-header-icon" download="ThomasCole-Resume.pdf" href="/Resume.pdf"> <a class="card-header-icon" download="ThomasCole-Resume.pdf" href="/Resume.pdf">
<span class="icon-text"> <span class="icon-text">
<span class="icon"> <span class="icon">
<i class="fas fa-download" aria-hidden="true"></i> <i class="fas fa-download" aria-hidden="true"></i>
</span> </span>
<span>Download</span> <span>Download</span>
</span> </span>
</a> --> </a>
</header> </header>
<div class="card-content"> <div class="card-content">
<Markdown content={data}/> <Markdown content={data}/>