chore: rearrange

This commit is contained in:
Smigz 2024-10-03 18:10:45 -04:00
parent 35bf95891c
commit b222b7b655
3 changed files with 0 additions and 0 deletions

185
portfolio/css/styles.css Normal file
View file

@ -0,0 +1,185 @@
.header {
padding: 0 170px;
background-color: #2C3639;
min-height: 450px;
color: #DCD7C9;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 75px;
}
.navbar h2 {
font-weight: bold;
font-size: 22px;
}
.navbar ul {
display: flex;
margin: 0;
padding: 0;
}
.navbar li {
gap: 15p;
margin: 10px;
}
.header-quote {
font-weight: 900;
font-size: xxx-large;
margin: 0;
}
.container {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}
.tagline {
align-items: center;
gap: 20px;
}
.tagphoto {
padding: 20px;
height: auto;
max-width: 200px;
}
.tagphoto img {
height: auto;
max-width: 250px;
}
#skills {
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
min-height: 450px;
}
.cards {
display: flex;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
}
.card {
width: 150px;
height: 150px;
padding: 50px;
gap: 52px;
word-wrap: break-word;
}
.card-photo {
flex-shrink: 0;
color: #2C3639;
/* width: 100px;
height: 100px;
background-color: green; */
}
.quote {
height: 400px;
background-color: #3F4E4F;
display: flex;
align-items: center;
color: #DCD7C9;
justify-content: center;
}
.quote-author {
display: flex;
align-content: flex-end;
}
.quote h1 {
display: flex;
align-items: center;
justify-content: center;
font-size: xx-large;
}
.contact {
height: 400px;
align-items: center;
justify-content: center;
display: flex;
}
.email-section {
display: flex;
align-items: center;
justify-content: space-between;
height: 150px;
background-color: #A27B5C;
color: #DCD7C9;
font-weight: 900;
min-width: 75%;
border-radius: 25px;
}
.signup {
padding: 10%;
}
.signup-button {
padding: 10%;
}
.signup-button button {
cursor: pointer;
border: 2px solid #2C3639;
padding: 8px 16px;
border-radius: 8px;
text-align: center;
text-decoration: none;
background-color: #2C3639;
color: #DCD7C9;
width: 170px;
}
.footer {
display: flex;
align-items: center;
justify-content: center;
background-color: #2C3639;
min-height: 50px;
color: #DCD7C9;
}
body {
display: flex;
flex-direction: column;
justify-content: space-between;
align-content: space-between;
font-family: 'Roboto Flex', sans-serif;
min-height: 98vh;
}
ul {
list-style-type: none;
}
a {
text-decoration: none;
color: #A27B5C;
font-weight: bolder;
font-size: large;
}
button {
cursor: pointer;
padding: 8px 16px;
border-radius: 8px;
}

BIN
portfolio/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 KiB

92
portfolio/index.html Normal file
View file

@ -0,0 +1,92 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,400;8..144,700;8..144,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css" class="cass" />
<title>Smig Tech</title>
</head>
<body>
<section class="header">
<div class="navbar">
<a href="#"><h2>Mikejr.dev</h2></a>
<ul>
<li><a href="#">Blog</a></li>
<li><a href="#">Resume</a></li>
<li><a href="#">GitHub</a></li>
</ul>
</div>
<div class="container">
<div class="tagline">
<h1 class="header-quote">Mike Smith - Engineer</h1>
Learning in public, building in public, networking, Developer/Systems
Engineer.
</div>
<div class="tagphoto">
<img src="static/rocket-7774875_640.png" alt="coolrocket" />
</div>
</div>
</section>
<section id="skills">
<h2 class="skills">A really cool DevOps Engineer</h2>
<div class="cards">
<div class="card">
<div class="card-photo">
<i class="fab fa-linux fa-10x"></i>
</div>
I've done some cool ish
</div>
<div class="card">
<div class="card-photo">
<i class="fab fa-aws fa-10x"></i>
</div>
I've done some cool ish
</div>
<div class="card">
<div class="card-photo">
<i class="fab fa-python fa-10x"></i>
</div>
I've done some cool ish
</div>
<div class="card">
<div class="card-photo">
<i class="fab fa-docker fa-10x"></i>
</div>
I've done some cool ish
</div>
</div>
</section>
<section class="quote">
<div class="quote-tag">
<h1 class="quote-header">
“Great things come from hard work and perseverance. No excuses.”
</h1>
<p class="quote-author">— Kobe Bryant</p>
</div>
</section>
<section class="contact">
<div class="email-section">
<div class="signup">
<h3>Let's Get in touch</h3>
<p>LEt's do this!</p>
</div>
<div class="signup-button">
<button>Sign Up</button>
</div>
</div>
</section>
<section class="footer">Yeah baby this is some good code</section>
<script
src="https://kit.fontawesome.com/24f16b96cf.js"
crossorigin="anonymous"
></script>
</body>
</html>