Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

starter pete thinkful #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 31 additions & 19 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,29 @@ <h1>Pete Thinkful | Artist</h1>
<article id="about">
<h2>About</h2>
<section>
<h3>Hi! I'm Pete Thinkful</h3>
<div>
<div class="flexgroup">
<div class="flexitem">
<img
class="image-circle"
src="images/pete-thinkful.png"
alt="Pete Thinkful"
/>
</div>
<div class="flexitemx">
<h3>Hi! I'm Pete Thinkful</h3>
<p>I'm an artist living in Denver, Colorado.</p>
<p>As an artist, I'm interested in:</p>
<ul>
<li>Producing abstract art</li>
<li>Creating street graffiti art</li>
<li>Connecting with like-minded artists</li>
</ul>
<p>
Please feel free to take a look at my website and feel free to
<a href="#contact">contact me</a>.
</p>
</div>
</div>
<p>I'm an artist living in Denver, Colorado.</p>
<p>As an artist, I'm interested in:</p>
<ul>
<li>Producing abstract art</li>
<li>Creating street graffiti art</li>
<li>Connecting with like-minded artists</li>
</ul>
<p>
Please feel free to take a look at my website and feel free to
<a href="#contact">contact me</a>.
</p>
</section>

<section>
Expand All @@ -69,7 +73,9 @@ <h3>Pete's Background</h3>
<!-- Portfolio section -->
<article id="portfolio">
<h2>Portfolio</h2>
<section>
<div class="flexgroup">
<div class="flexitem">
<section>
<h3>Abstract Red</h3>
<div>
<img src="images/abstract-red.png" alt="Abstract Red" />
Expand All @@ -78,9 +84,11 @@ <h3>Abstract Red</h3>
Vaporware wayfarers heirloom neutra disrupt. Activated charcoal
waistcoat scenester hell of.
</p>
</section>
</section>
</div>

<section>
<div class="flexitem">
<section>
<h3>Spiral Zany</h3>
<div>
<img src="images/spiral-zany.png" alt="Spiral Zany" />
Expand All @@ -89,9 +97,11 @@ <h3>Spiral Zany</h3>
Sriracha portland taxidermy cronut messenger bag, vegan
distillery. Vaporware kickstarter air plant mumblecore food truck.
</p>
</section>
</section>
</div>

<section>
<div class="flexitem">
<section>
<h3>Melted Rainbow</h3>
<div>
<img src="images/melted-rainbow.png" alt="Melted Rainbow" />
Expand All @@ -100,7 +110,9 @@ <h3>Melted Rainbow</h3>
Edison bulb single-origin coffee snackwave, actually ennui
locavore shabby chic forage.
</p>
</section>
</section>
</div>
</div>
</article>

<hr />
Expand Down
35 changes: 33 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,14 @@ h3 {

/* Header */
header {
display: flex;
text-align: center;
flex-direction: row;
justify-content: center;
}

nav {
margin-top: 35px;
}

/* Containers */
Expand Down Expand Up @@ -52,7 +59,7 @@ a:hover {
}

nav a {
padding-left: 20px;
padding-left: 40px;
}

/* Images */
Expand All @@ -64,7 +71,7 @@ img {

.image-circle {
border: 2px solid #003049;
border-radius: 50%;
border-radius: 50%;
}

/* Footer */
Expand All @@ -76,3 +83,27 @@ footer {
hr {
border: 1px solid black;
}

.flexgroup {
display: flex;
flex-direction: row;
justify-content: space-between;
}

.flexitem {
flex: 1;
margin: 5px;
}

.flexitemx {
flex: 1;
text-align: left;
}

article div section p {
font-size: 14px;
}

ul {
text-align: left;
}