From 6b26bc8f46afb9901ad91034a65f404913ec2fc1 Mon Sep 17 00:00:00 2001 From: John Andrade Date: Thu, 13 Jul 2023 21:41:18 -0700 Subject: [PATCH] completed MVP --- index.html | 67 ++++++++++++++++++++++++++++++++++++++++++++++++- style/index.css | 53 +++++++++++++++++++++++++++++++++++++- 2 files changed, 118 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index d01f779ff..0e8f290f1 100644 --- a/index.html +++ b/index.html @@ -4,8 +4,73 @@ Document + - +
+

John Andrade

+ +
+ +
+ top page image +
+

John Andrade

+ +

+ This will be the part I will add aobut me and my journet into Full Stack. For now this is a work in progress. +

+
+
+ +
+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+ +

Portfolio Piece

+
+
+
+ + + \ No newline at end of file diff --git a/style/index.css b/style/index.css index 440e53514..cc15614fb 100644 --- a/style/index.css +++ b/style/index.css @@ -1 +1,52 @@ -/* Add CSS styling here */ \ No newline at end of file +/* Add CSS styling here */ +header { + background-color: lightgrey; + padding: 20px; + margin-bottom: 15px; +} + +footer { + background-color: lightgrey; + text-align: center; + padding: 20px; +} + +.topsection { + display: flex; + flex-direction: row; + justify-content: center; +} + +.description { + padding: 20px; + width: 50%; +} + +.row { + display: flex; + justify-content: space-evenly; + flex-direction: row; + padding: 20px; +} + +.portfolio-element { + text-align: center; +} + +button { + background-color: white; + color: black; + border: black solid 1px; + padding: 5px 10px; +} + +button:hover { + background-color: black; + color: white; + border: white solid 1px; +} + +button a { + text-decoration: none; + color: inherit; +} \ No newline at end of file