Cleaned up layout and added website to project
This commit is contained in:
@@ -7,31 +7,33 @@
|
|||||||
<title>Ethan Simmons</title>
|
<title>Ethan Simmons</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<div class="grid-container">
|
||||||
|
<header class="grid-item header">
|
||||||
<h1>Ethan Simmons</h1>
|
<h1>Ethan Simmons</h1>
|
||||||
</header>
|
</header>
|
||||||
<div class="grid-container">
|
|
||||||
<section class="grid-item about-section">
|
<section class="grid-item about-section">
|
||||||
<h2 id="about-title">About</h2>
|
<h2 id="about-title">About</h2>
|
||||||
<p>I am a motivated college freshman with a 4.0 GPA, pursuing a Bachelor's Degree in Electrical Engineering at the University of Arkansas. Strong foundation in computer skills, including Python, Rust, C++, C#, and JavaScript.</p>
|
<p>I am a motivated college freshman with a 4.0 GPA, pursuing a Bachelor's Degree in Electrical Engineering at the University of Arkansas. I have a strong foundation in computer programming, including Python, Rust, C++, C#, and JavaScript.</p>
|
||||||
</section>
|
</section>
|
||||||
<aside class="grid-item contact-section">
|
<aside class="grid-item contact-section">
|
||||||
<h2 id="contact-title">Contact</h2>
|
<h2 id="contact-title">Contact</h2>
|
||||||
<ul id="contact">
|
<ul id="contact">
|
||||||
<li><strong>Email:</strong> <a href="mailto:ethansimmons@simmonsethan.com">ethansimmons@simmonsethan.com</a></li>
|
<li><strong>Email:</strong> <a href="mailto:ethansimmons@simmonsethan.com">ethansimmons@simmonsethan.com</a></li>
|
||||||
<li><strong>Phone:</strong> (870) 783-0337</li>
|
<li><strong>Phone:</strong> (870) 783-0337</li>
|
||||||
|
<li><strong>Github: </strong> <a href="https://github.com/Simmer505">Simmer505</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<section class="grid-item projects-section" id="projects">
|
<section class="grid-item projects-section" id="projects">
|
||||||
<h2>Personal Projects</h2>
|
<h2>Personal Projects</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://github.com/Simmer505/Waywrite">Waywrite</a></li>
|
<li><a href="https://github.com/Simmer505/Waywrite">Waywrite</a></li>
|
||||||
|
<li><a href="https://github.com/Simmer505/Personal-Website">This Website</a></li>
|
||||||
<li><a href="https://github.com/Simmer505/Dotfiles-Manager">Dotfiles Manager</a></li>
|
<li><a href="https://github.com/Simmer505/Dotfiles-Manager">Dotfiles Manager</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
|
||||||
<footer class="grid-item footer-section">
|
<footer class="grid-item footer-section">
|
||||||
<p>© 2024 Ethan Simmons</p>
|
<p>© 2024 Ethan Simmons</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,14 +1,13 @@
|
|||||||
* {
|
* {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #151515;
|
background-color: #151515;
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
color: #c5c5c5;
|
color: #efefef;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@@ -16,13 +15,12 @@ a {
|
|||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
padding: 2rem;
|
|
||||||
background-color: #212121;
|
background-color: #212121;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 50px;
|
font-size: 50px;
|
||||||
line-height: 1.2;
|
line-height: 1;
|
||||||
letter-spacing: -1px;
|
letter-spacing: -1px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
@@ -50,15 +48,9 @@ h2 {
|
|||||||
|
|
||||||
.grid-container {
|
.grid-container {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 5% 45% 10% 35% 5%;
|
min-height: 100vh;
|
||||||
grid-template-rows: 10% 40% 5% 35% 10%;
|
grid-template-columns: 1fr 5fr 2fr 5fr 1fr;
|
||||||
height: 80vh;
|
grid-template-rows: 2fr minmax(1px, 1fr) 10fr minmax(1px, 1fr) 10fr minmax(1px, 1fr) 2fr;
|
||||||
grid-template-areas:
|
|
||||||
"empty header header header empty"
|
|
||||||
"empty projects empty contact empty"
|
|
||||||
"empty about empty empty empty"
|
|
||||||
"empty empty empty empty"
|
|
||||||
"footer footer empty footer footer";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.grid-item {
|
.grid-item {
|
||||||
@@ -66,27 +58,28 @@ h2 {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 2rem;
|
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
justify-content: center;
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
grid-row: 1;
|
||||||
|
grid-column-start: 1;
|
||||||
|
grid-column-end: 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.about-section {
|
.about-section {
|
||||||
grid-column-start: 2;
|
grid-column: 2;
|
||||||
grid-column-end: 2;
|
grid-row: 3;
|
||||||
grid-row-start: 4;
|
padding: 10%;
|
||||||
grid-row-end: 4;
|
|
||||||
background-color: #484554;
|
background-color: #484554;
|
||||||
border-radius: 10px 0 0 10px;
|
border-radius: 10px 10px 10px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.projects-section {
|
.projects-section {
|
||||||
grid-column-start: 2;
|
grid-column: 2;
|
||||||
grid-column-end: 2;
|
grid-row: 5;
|
||||||
grid-row-start: 2;
|
|
||||||
grid-row-end: 2;
|
|
||||||
background-color: #4F5A6E;
|
background-color: #4F5A6E;
|
||||||
border-radius: 0 10px 10px 0;
|
border-radius: 10px 10px 10px 10px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
@@ -96,31 +89,24 @@ h2 {
|
|||||||
.projects-section ul li {
|
.projects-section ul li {
|
||||||
height: 50px;
|
height: 50px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.projects-section a {
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.contact-section {
|
.contact-section {
|
||||||
grid-column-start: 4;
|
grid-column: 4;
|
||||||
grid-column-end: 4;
|
grid-row-start: 3;
|
||||||
grid-row-start: 2;
|
grid-row-end: 5;
|
||||||
grid-row-end: 3;
|
|
||||||
|
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer-section {
|
||||||
|
grid-row: 7;
|
||||||
|
grid-column-start: 1;
|
||||||
|
grid-column-end: 6;
|
||||||
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
grid-column-start: 5;
|
|
||||||
grid-column-end: 5;
|
|
||||||
grid-row-start: 1;
|
|
||||||
grid-row-start: 5;
|
|
||||||
background-color: #212121;
|
background-color: #212121;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user