From 7ac775a0aa2847eb6d77ad6e2305f40ab7b394f7 Mon Sep 17 00:00:00 2001 From: dnsrocha Date: Mon, 26 Oct 2020 09:03:36 -0700 Subject: [PATCH 1/6] Needs image address fix --- .idea/.gitignore | 6 ++ .idea/misc.xml | 4 + .idea/modules.xml | 8 ++ .idea/personal-portfolio-site.iml | 15 ++++ .idea/vcs.xml | 6 ++ about.html | 40 +++++++++ css/style.css | 131 ++++++++++++++++++++++++++++++ hobby-blog.html | 76 +++++++++++++++++ index.html | 35 ++++++++ portfolio.html | 39 +++++++++ 10 files changed, 360 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/personal-portfolio-site.iml create mode 100644 .idea/vcs.xml create mode 100644 about.html create mode 100644 css/style.css create mode 100644 hobby-blog.html create mode 100644 index.html create mode 100644 portfolio.html diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 000000000..8bf4d45d6 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,6 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 000000000..510e7fcc8 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 000000000..d731487e1 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/personal-portfolio-site.iml b/.idea/personal-portfolio-site.iml new file mode 100644 index 000000000..6e7c09c28 --- /dev/null +++ b/.idea/personal-portfolio-site.iml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..94a25f7f4 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/about.html b/about.html new file mode 100644 index 000000000..5e08e14e8 --- /dev/null +++ b/about.html @@ -0,0 +1,40 @@ + + + + + + + About Denise + + + +
+ +

Denise

+
+ +
+
+
+

About Me

+

Hi, I'm Denise Soares, and my pronouns are she/her. I was born in Brazil and moved to the United States in 2017; since then, I live in the beautiful Seattle, surrounded by art, music, good food and lots of trees. In my free time, I try to spend as much time outdoors as I can, either by travelling long distances or by exploring my surroundings.

+ +

Full Stack Developer in Training - Currently studying at Ada Developers Academy

+
+
+
+ + + + \ No newline at end of file diff --git a/css/style.css b/css/style.css new file mode 100644 index 000000000..994290a12 --- /dev/null +++ b/css/style.css @@ -0,0 +1,131 @@ +header { + min-width: 700px; + background-color: rgb(216, 211, 211); + text-align: center; + } + img { + max-width: 100%; + height: auto; + } + + img:hover { + opacity: 70%; + } + html, body { + height: 100%; + } + + body { + display: flex; + height: 100%; + display: flex; + flex-direction: column; + margin: 0px; + font-family: verdana; + border: white 2px solid; + } + + nav { + display: flex; + justify-content: center; + background-color: rgba(8, 1, 1, 0.966); + padding: 5px; + } + + nav a { + text-decoration: none; + color: white; + font-size: 20px; + padding: 10px; + } + + nav a:hover { + color: rgb(126, 59, 4); + } + + .images { + display: flex; + padding: 5px; + } + + .image { + margin: 10px; + text-align: center; + min-width: 210px; + box-shadow: 0 4px 8px 0 rgba(40, 78, 3, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + } + + .subject h2 { + margin: 60px 0px 0px 0px; + padding: 7px; + background-image: radial-gradient(rgb(163, 155, 155), white 70%); + font-family: Georgia, 'Times New Roman', Times, serif; + text-align: center; + font-size: 40px; + min-width: 700px; + } + + .intro { + display: flex; + flex-direction: column; + border: white solid 3px; + } + .about { + max-width: 600px; + padding: 1px 10px; + margin: 20px 10px; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + } + + .about h2 { + text-decoration: underline; + } + + .about:nth-of-type(3) { + border: rgb(126, 59, 4) solid 2px; + align-self: flex-end; + } + + .portfolio { + display: flex; + flex-direction: column; + border: white solid 3px; + } + + .dev { + max-width: 600px; + padding: 1px 10px; + margin: 20px 10px; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + } + + .dev h2 { + text-decoration: underline; + } + + body.footer { + align-self: flex-start; + } + + footer { + /* background-color: grey; */ + border: rgb(243, 113, 6) 2px solid; + flex-shrink: 0; + bottom: 0; + width: 100%; + text-align: center; + height: 70px; + /* padding-top: 10px; */ + } + + footer ul { + display: flex; + justify-content: center; + list-style-type: none; + height: 40px; + } + + footer img { + max-width: 40px; + padding: 0px 5px; + } \ No newline at end of file diff --git a/hobby-blog.html b/hobby-blog.html new file mode 100644 index 000000000..570a55b0c --- /dev/null +++ b/hobby-blog.html @@ -0,0 +1,76 @@ + + + + + + Through My Lenses + + + + +
+ +

Through My Lenses

+
+ +
+ +
+ + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 000000000..11dde3c5f --- /dev/null +++ b/index.html @@ -0,0 +1,35 @@ + + + + + + + + Denise Soares + + + +
+ +

Denise Soares

+
+ +
+
+ alt="Me"> +
+ + + + \ No newline at end of file diff --git a/portfolio.html b/portfolio.html new file mode 100644 index 000000000..1a9e8ea8a --- /dev/null +++ b/portfolio.html @@ -0,0 +1,39 @@ + + + + + + Portfolio + + + + +
+ +

Portfolio

+
+ +
+
+
+

Dev Projects

+

In the link below, you will be able to see some of the projects I developed at Ada Developers Academy

+ Git Repository +
+
+
+ + + + \ No newline at end of file From 8a00ad7b2b5b35848fe1d60b016d0637a9f97b30 Mon Sep 17 00:00:00 2001 From: dnsrocha Date: Mon, 26 Oct 2020 09:11:44 -0700 Subject: [PATCH 2/6] final version --- hobby-blog.html | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/hobby-blog.html b/hobby-blog.html index 570a55b0c..21c7e9445 100644 --- a/hobby-blog.html +++ b/hobby-blog.html @@ -27,39 +27,34 @@

Seattle Landscape

The view from my roof - - From 8041a690f82c16aab287f5618c798b77a138ef86 Mon Sep 17 00:00:00 2001 From: dnsrocha Date: Mon, 26 Oct 2020 09:30:55 -0700 Subject: [PATCH 3/6] Image sizing fixed --- hobby-blog.html | 3 --- 1 file changed, 3 deletions(-) diff --git a/hobby-blog.html b/hobby-blog.html index 21c7e9445..38a9cf0e7 100644 --- a/hobby-blog.html +++ b/hobby-blog.html @@ -23,9 +23,6 @@

Through My Lenses

Photography

Algarve

From 63af18cd8f1ac01f6e02e60e9426b02b77e10327 Mon Sep 17 00:00:00 2001 From: dnsrocha Date: Mon, 26 Oct 2020 09:33:03 -0700 Subject: [PATCH 4/6] Image sizing fixed --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 11dde3c5f..a0cddde62 100644 --- a/index.html +++ b/index.html @@ -21,7 +21,7 @@

Denise Soares

- alt="Me"> + alt="Me">