Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
smccarthy94 committed Dec 23, 2024
1 parent 29993b3 commit a5604be
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 37 deletions.
Binary file added favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 10 additions & 37 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,50 +3,23 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sean McCarthy's Personal Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
color: #ddd;
background-color: rgb(14, 14, 14);
}
header {
text-align: center;
margin-top: 8em;
margin-bottom: 2em;
}
nav {
margin-top: 2em;
text-align: center;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: #aaa;
font-size: 18px;
}
nav a:hover {
color: orange;
}
</style>
<link rel="icon" href="./favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./site.css">
<title>Sean McCarthy | Home</title>
</head>
<body>
<header>
<img src="./avatar.png" width="128" height="128" />
<h1>Sean McCarthy</h1>
<h4>smccarthy94.github.io</h4>
</header>
<section>
<div style="width: 100%; max-width: 75vw;">
<iframe width="100%" height="450" src="https://www.youtube.com/embed/videoseries?list=PLHFLrqMkvrx_OaTCCzmyfBdvmh65Imle9" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<section class="playlist-highlight">
<iframe
src="https://www.youtube.com/embed/videoseries?list=PLHFLrqMkvrx_OaTCCzmyfBdvmh65Imle9"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</section>
<nav>
<a href="https://www.instagram.com/pop.pops.old.cortina" target="_blank">Instagram @pop.pops.old.cortina</a>
Expand Down
39 changes: 39 additions & 0 deletions site.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
color: #ddd;
background-color: rgb(14, 14, 14);
}
header {
text-align: center;
margin-top: 2em;
margin-bottom: 2em;

h1, h2, h3, h4, h5, h6 {
margin-top: 0.25em;
margin-bottom: 0.5em;
}
}
nav {
margin-top: 2em;
text-align: center;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: #aaa;
font-size: 18px;
}
nav a:hover {
color: orange;
}
.playlist-highlight {
width: auto;
max-width: 75vw;
}

0 comments on commit a5604be

Please sign in to comment.