From 633bc371812917cb1ede0b037b759da4a4713125 Mon Sep 17 00:00:00 2001 From: Preeti Date: Mon, 1 Jul 2019 15:10:58 +0200 Subject: [PATCH 01/17] adding text shadow white --- styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles.css b/styles.css index bea1321..2db81d7 100644 --- a/styles.css +++ b/styles.css @@ -87,6 +87,10 @@ header .profile-image:hover { display: table; margin: 10px auto; } + +.hello { + text-shadow: 2px 2px white; +} .location { background-color: #222; color: rgb(130, 212, 130); From 7037690cb7983db6c7efcf73a2494a842ed1e20e Mon Sep 17 00:00:00 2001 From: Preeti Date: Mon, 1 Jul 2019 15:12:09 +0200 Subject: [PATCH 02/17] made textshadow smaller --- styles.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/styles.css b/styles.css index 2db81d7..159bcfc 100644 --- a/styles.css +++ b/styles.css @@ -24,7 +24,7 @@ a { } .shadow { - text-shadow: 2px 1px #ffffff; + text-shadow: 1px 1px #ffffff; } /* Section Styles */ @@ -88,9 +88,10 @@ header .profile-image:hover { margin: 10px auto; } -.hello { +/* .hello { text-shadow: 2px 2px white; -} +} */ + .location { background-color: #222; color: rgb(130, 212, 130); From 85dd3c2149ebfff035b6cdfc6e48f37893cc051c Mon Sep 17 00:00:00 2001 From: Preeti Date: Mon, 1 Jul 2019 15:12:53 +0200 Subject: [PATCH 03/17] adding css class to contact and resume page --- contact.html | 2 +- resume.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contact.html b/contact.html index 9f3dbcf..2f67fb6 100644 --- a/contact.html +++ b/contact.html @@ -24,7 +24,7 @@
Drawing of Jane Smith -

Hello, I’m Preeti.

+

Hello, I’m Preeti.

Originally from: Lawrence, Kansas, USA.

Currently in: Amsterdam, NL. diff --git a/resume.html b/resume.html index d773ed1..2ad2e64 100644 --- a/resume.html +++ b/resume.html @@ -24,7 +24,7 @@

Drawing of Jane Smith -

Hello, I’m Preeti.

+

Hello, I’m Preeti.

Originally from: Lawrence, Kansas, USA.

Currently in: Amsterdam, NL. From 68a305899bf2cd691b016374d3dee3156d0aef73 Mon Sep 17 00:00:00 2001 From: Preeti Date: Tue, 2 Jul 2019 11:06:33 +0200 Subject: [PATCH 04/17] updated about me section --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index a0a7d4a..e3d6619 100644 --- a/index.html +++ b/index.html @@ -29,7 +29,7 @@

Hello, I’m Preeti.

About Me

-

I’m an aspiring front-end developer based in Amsterdam. I've lived in lots of different places - England, Spain, France, USA, Netherlands - and I'm interested in many things +

I’m an aspiring full-stack developer based in Amsterdam. I've lived in lots of different places - England, Spain, France, USA, Netherlands - and I'm interested in many things . I’m excited to bring my life experience to the process of building fantastic looking websites!

  • To learn more, view my resume.
  • @@ -57,6 +57,7 @@

    Hobbies & Interests

  • Yoga
  • Learning new languages
  • +
  • Teaching English
  • Educational tech
From ffb2d0ff78390ecce208b7cef45b93a62a355fcc Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:21:54 +0200 Subject: [PATCH 05/17] changing margin of card css class --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 159bcfc..b5b4f4e 100644 --- a/styles.css +++ b/styles.css @@ -103,7 +103,7 @@ header .location:hover { } .card { - margin: 30px; + margin: 1px auto; padding: 20px 40px 40px; max-width: 333px; background: #fff; From 423fb77379cc41aaaafd9f523bb72b0b14b50311 Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:23:24 +0200 Subject: [PATCH 06/17] rearranging css --- styles.css | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/styles.css b/styles.css index b5b4f4e..262bbe6 100644 --- a/styles.css +++ b/styles.css @@ -102,14 +102,6 @@ header .location:hover { transition: all .5s; } -.card { - margin: 1px auto; - padding: 20px 40px 40px; - max-width: 333px; - background: #fff; - border-radius: 10px; -} - .left { text-align: left; } @@ -164,6 +156,14 @@ ul.skills { transition: all .5s; } +.card { + margin: 10px auto; + padding: 20px 40px 40px; + max-width: 333px; + background: #fff; + border-radius: 10px; +} + footer { width: 100%; min-height: 30px; From eed8e9df5dd45f090abd1848c4d13f7cd1c0939f Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:24:24 +0200 Subject: [PATCH 07/17] adding second width mediaq --- styles.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/styles.css b/styles.css index 262bbe6..5e31b70 100644 --- a/styles.css +++ b/styles.css @@ -275,3 +275,6 @@ a.social:hover { } +@media (min-width: 770px) and (max-width: 1024px) { +} + From b500b16c408d9a5d60b56117929a22170a279a1d Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:24:55 +0200 Subject: [PATCH 08/17] adding third mediaq --- styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles.css b/styles.css index 5e31b70..a6f52d1 100644 --- a/styles.css +++ b/styles.css @@ -278,3 +278,7 @@ a.social:hover { @media (min-width: 770px) and (max-width: 1024px) { } +@media (min-width: 1025px) { + +} + From e520ccbe7a73c557e9edf1d95c6629bc56385706 Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:25:35 +0200 Subject: [PATCH 09/17] removing unused tooltip css --- styles.css | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/styles.css b/styles.css index a6f52d1..a0ee547 100644 --- a/styles.css +++ b/styles.css @@ -217,30 +217,6 @@ a.social:hover { line-height: 1.6; } -/* Tool tips - not sure if I will use this quite yet*/ - -.tooltip { - position: relative; - display: inline-block; -} - -.tooltip .tooltiptext { - visibility: hidden; - width: 120px; - background-color: black; - color: #fff; - text-align: center; - border-radius: 6px; - padding: 5px 0; - position: absolute; - z-index: 1; - -} - -.tooltip:hover .tooltiptext { - visibility: visible; -} - /* Mediaqueries */ @media screen and (min-width: 768px) { @@ -279,6 +255,6 @@ a.social:hover { } @media (min-width: 1025px) { - + } From 23a16e79e114e49adde434fb00ee3dc5b052a357 Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:28:57 +0200 Subject: [PATCH 10/17] adding margin left to middle mediaq --- styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles.css b/styles.css index a0ee547..23b55e1 100644 --- a/styles.css +++ b/styles.css @@ -252,6 +252,10 @@ a.social:hover { } @media (min-width: 770px) and (max-width: 1024px) { + + .card { + margin-left: 10px; + } } @media (min-width: 1025px) { From d31cb9044a9a35495564b4126df8f41464a90ee2 Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:29:21 +0200 Subject: [PATCH 11/17] adding margin-right to middle mediaq --- styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/styles.css b/styles.css index 23b55e1..4b76561 100644 --- a/styles.css +++ b/styles.css @@ -255,6 +255,7 @@ a.social:hover { .card { margin-left: 10px; + margin-right: 10px; } } From e52f8291063d2a3b010cc825178c18079b31b148 Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:30:30 +0200 Subject: [PATCH 12/17] changing margin auto to resume css --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 4b76561..9e355ac 100644 --- a/styles.css +++ b/styles.css @@ -107,7 +107,7 @@ header .location:hover { } .resume { - margin: 30px; + margin: 10px auto; padding: 20px 40px 40px; max-width: 500px; text-align: left; From 6172bf5760df488ca1f2f6e8a897185a18539d05 Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:31:08 +0200 Subject: [PATCH 13/17] adding margin left to resume css class middle mediaq --- styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles.css b/styles.css index 9e355ac..39d54bd 100644 --- a/styles.css +++ b/styles.css @@ -257,6 +257,10 @@ a.social:hover { margin-left: 10px; margin-right: 10px; } + + .resume { + margin-left: 10px; + } } @media (min-width: 1025px) { From f871bae01bba975926821a360ff535b04e071301 Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:32:44 +0200 Subject: [PATCH 14/17] adding margin right to middle mediaq resume css class --- styles.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 39d54bd..fdc9716 100644 --- a/styles.css +++ b/styles.css @@ -259,7 +259,8 @@ a.social:hover { } .resume { - margin-left: 10px; + margin-left: 10px; + margin-right: 10px; } } From 1a63d4c2a5d3f456a99e7b2052495731a69e45de Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:33:44 +0200 Subject: [PATCH 15/17] adding min width to resume css class mediaq --- styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/styles.css b/styles.css index fdc9716..1837178 100644 --- a/styles.css +++ b/styles.css @@ -261,6 +261,7 @@ a.social:hover { .resume { margin-left: 10px; margin-right: 10px; + min-width: 500px; } } From ef925854fb270b021a63478df0e00056ac99bf55 Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:34:56 +0200 Subject: [PATCH 16/17] changing min width to 400 --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 1837178..f99b62f 100644 --- a/styles.css +++ b/styles.css @@ -261,7 +261,7 @@ a.social:hover { .resume { margin-left: 10px; margin-right: 10px; - min-width: 500px; + min-width: 400px; } } From 7d62cb10938103b784c0298adbc23b16ec19291b Mon Sep 17 00:00:00 2001 From: Preeti Date: Fri, 5 Jul 2019 19:35:29 +0200 Subject: [PATCH 17/17] reduced min width to 375 --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index f99b62f..e2a8da6 100644 --- a/styles.css +++ b/styles.css @@ -261,7 +261,7 @@ a.social:hover { .resume { margin-left: 10px; margin-right: 10px; - min-width: 400px; + min-width: 375px; } }