diff --git a/index.html b/index.html index ec3ce73..c946cfd 100644 --- a/index.html +++ b/index.html @@ -1,134 +1,142 @@ - - - - + + + + Pete Thinkful - - - - -
-

Pete Thinkful | Artist

- -
+ + + + +
+
+

Pete Thinkful | Artist

+ +
+
-
-
+
+
-

About

-
-

Hi! I'm Pete Thinkful

-
- Pete Thinkful -
-

I'm an artist living in Denver, Colorado.

-

As an artist, I'm interested in:

-
    -
  • Producing abstract art
  • -
  • Creating street graffiti art
  • -
  • Connecting with like-minded artists
  • -
-

- Please feel free to take a look at my website and feel free to - contact me. -

-
+

About

+ +
+
+ Pete Thinkful +
+
+

Hi! I'm Pete Thinkful

-
-

Pete's Background

-

- After graduating college, I became an art teacher and worked with - beginners and professionals. I love art and my works have been - featured in major art galleries across the globe. -

-

- If you're looking to hire an artist or if you're an artist looking - for a collaborator for your next project, please reach out! I'm so - excited to work with other artists to create new art. -

-
+

I'm an artist living in Denver, Colorado.

+

As an artist, I'm interested in:

+
    +
  • Producing abstract art
  • +
  • Creating street graffiti art
  • +
  • Connecting with like-minded artists
  • +
+

+ Please feel free to take a look at my website and feel free to + contact me. +

+
+
+
+

Pete's Background

+

+ After graduating college, I became an art teacher and worked with + beginners and professionals. I love art and my works have been + featured in major art galleries across the globe. +

+

+ If you're looking to hire an artist or if you're an artist looking + for a collaborator for your next project, please reach out! I'm so + excited to work with other artists to create new art. +

+
-
+
-

Portfolio

-
-

Abstract Red

-
- Abstract Red -
-

- Vaporware wayfarers heirloom neutra disrupt. Activated charcoal - waistcoat scenester hell of. -

-
+

Portfolio

+ +
+
+

Abstract Red

+
+ Abstract Red +
+

+ Vaporware wayfarers heirloom neutra disrupt. Activated charcoal + waistcoat scenester hell of. +

+
-
-

Spiral Zany

-
- Spiral Zany -
-

- Sriracha portland taxidermy cronut messenger bag, vegan - distillery. Vaporware kickstarter air plant mumblecore food truck. -

-
+
+

Spiral Zany

+
+ Spiral Zany +
+

+ Sriracha portland taxidermy cronut messenger bag, vegan + distillery. Vaporware kickstarter air plant mumblecore food truck. +

+
-
-

Melted Rainbow

-
- Melted Rainbow +
+

Melted Rainbow

+
+ Melted Rainbow +
+

+ Edison bulb single-origin coffee snackwave, actually ennui + locavore shabby chic forage. +

+
-

- Edison bulb single-origin coffee snackwave, actually ennui - locavore shabby chic forage. -

-
-
+
-

Contact

-

- I'd love to hear from you! Please feel free to contact or follow me: -

-
    -
  1. - LinkedIn -
  2. -
  3. - Instagram -
  4. -
  5. - Pinterest -
  6. -
+

Contact

+

+ I'd love to hear from you! Please feel free to contact or follow me: +

+
    +
  1. + LinkedIn +
  2. +
  3. + Instagram +
  4. +
  5. + Pinterest +
  6. +
-
-
+
+
- - - + + + diff --git a/style.css b/style.css index 852500d..1e28534 100644 --- a/style.css +++ b/style.css @@ -2,77 +2,108 @@ @import url("https://fonts.googleapis.com/css2?family=Playfair+Display&family=Source+Sans+Pro:wght@400&display=swap"); body { - background-color: #eae2b7; - color: #003049; - font-family: "Source Sans Pro", Tahoma, Geneva, Verdana, sans-serif; - padding: 40px; + background-color: #eae2b7; + color: #003049; + font-family: "Source Sans Pro", Tahoma, Geneva, Verdana, sans-serif; + padding: 40px; } /* Headings */ h1, h2, h3 { - font-family: "Playfair Display", Times, serif; - text-align: center; + font-family: "Playfair Display", Times, serif; + text-align: center; } /* Header */ header { - text-align: center; + text-align: center; } /* Containers */ div { - background-color: #eae2b7; - margin: auto; - width: 600px; + background-color: #eae2b7; + margin: auto; + width: 600px; } article { - padding: 50px 0; + padding: 50px 0; } article div { - text-align: center; - width: 100%; + text-align: center; + width: 100%; } /* Paragraphs */ -p { - line-height: 1.5; +p, ul { + line-height: 1.5; + text-align: left; } /* Links */ a:link { - color: #d62828; + color: #d62828; } a:hover { - color: #f77f00; + color: #f77f00; } nav a { - padding-left: 20px; + padding-left: 20px; } /* Images */ img { - width: 100%; - max-width: 200px; - height: auto; + width: 100%; + max-width: 200px; + height: auto; } .image-circle { - border: 2px solid #003049; - border-radius: 50%; + border: 2px solid #003049; + border-radius: 50%; } /* Footer */ -footer { - text-align: center; +footer p { + text-align: center; } /* Other page elements */ hr { - border: 1px solid black; + border: 1px solid black; } + +/* Align Header items using flex in row and align content vertically */ +.header-bar { + display: flex; + flex-direction: row; + align-items: center; +} + +/*Align profile image and intro horizontally*/ +#about-image-intro { + display: flex; + flex-direction: row; +} + +/*Set font size as per requirement and Align center as per mock*/ +.project-description { + font-size: 14px; + text-align: center; +} + +/*Horizontally display all portfolio items*/ +.portfolio-items { + display: flex; + flex-direction: row; +} + +/*Custom spacing between portfolio items*/ +div.portfolio-items section { + padding: 0 0 0 2px; +} \ No newline at end of file