From 7f0e482163709c5c28ff20fa082bf13afa7c893b Mon Sep 17 00:00:00 2001 From: Pooja Date: Thu, 18 Oct 2018 19:34:36 -0500 Subject: [PATCH 1/4] add background color --- index.html | 1 + style.css | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 style.css diff --git a/index.html b/index.html index e52427d..ebf546c 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,7 @@ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..f92b71e --- /dev/null +++ b/style.css @@ -0,0 +1,3 @@ +.list-group-item { + background-color:#A3FFB7 +} \ No newline at end of file From 9d05b8810844a01ab686414c0430a9bef7f6299e Mon Sep 17 00:00:00 2001 From: Pooja Date: Thu, 18 Oct 2018 19:36:39 -0500 Subject: [PATCH 2/4] change link color --- style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style.css b/style.css index f92b71e..fc88850 100644 --- a/style.css +++ b/style.css @@ -1,3 +1,8 @@ .list-group-item { background-color:#A3FFB7 +} + +a { + text-decoration: none; + color: #A358B7; } \ No newline at end of file From e0343a43acdf73943dd342ab90bb24c38a10e349 Mon Sep 17 00:00:00 2001 From: Pooja Date: Thu, 18 Oct 2018 19:43:52 -0500 Subject: [PATCH 3/4] change background color --- style.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index fc88850..1e15233 100644 --- a/style.css +++ b/style.css @@ -1,8 +1,17 @@ +body { + background-color:#C1FFD0; + +} .list-group-item { - background-color:#A3FFB7 + background-color:#A3FFB7; + background-image: linear-gradient( .75turn, #A3FFB7 , #6AFFB7); } a { text-decoration: none; color: #A358B7; +} +a:hover { + color:black; + text-decoration: none; } \ No newline at end of file From dd28dd60272653b2e1eb5fdeeef48de39bbe0bfd Mon Sep 17 00:00:00 2001 From: Pooja Date: Thu, 18 Oct 2018 19:47:17 -0500 Subject: [PATCH 4/4] change header font --- style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/style.css b/style.css index 1e15233..88d4260 100644 --- a/style.css +++ b/style.css @@ -2,6 +2,12 @@ body { background-color:#C1FFD0; } +.jumbortan h2{ + color:#A358B7; + font-family: Helvetica, sans-serif; + font-weight:lighter; + font-size: 60px +} .list-group-item { background-color:#A3FFB7; background-image: linear-gradient( .75turn, #A3FFB7 , #6AFFB7);