From a6ab633a3c1c5e9882452ab8efc29df8f7c92e35 Mon Sep 17 00:00:00 2001 From: RJ Date: Wed, 19 Feb 2020 21:51:31 -0500 Subject: [PATCH 1/5] commit to make sure I see an update on github --- great-idea/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/great-idea/index.html b/great-idea/index.html index c5f374a23..140152648 100644 --- a/great-idea/index.html +++ b/great-idea/index.html @@ -20,4 +20,5 @@ - \ No newline at end of file + +

hello world

\ No newline at end of file From fa7a3486dda71bf501548daeccb0ce8604d475d0 Mon Sep 17 00:00:00 2001 From: RJ Date: Wed, 19 Feb 2020 23:21:13 -0500 Subject: [PATCH 2/5] added the HTML & CSS codes as well as added some new extenisions on VSCode --- .vscode/settings.json | 7 ++ great-idea/css/index.css | 226 ++++++++++++++++++++++++++++++++++++++- great-idea/index.html | 97 ++++++++++++++++- 3 files changed, 328 insertions(+), 2 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..6b37817ff --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "workbench.colorCustomizations": { + "activityBar.background": "#0A350A", + "titleBar.activeBackground": "#0F4B0F", + "titleBar.activeForeground": "#F2FCF2" + } +} \ No newline at end of file diff --git a/great-idea/css/index.css b/great-idea/css/index.css index a6445bd84..53cb00aac 100644 --- a/great-idea/css/index.css +++ b/great-idea/css/index.css @@ -63,4 +63,228 @@ h1, h2, h3, h4, h5 { margin-bottom: 15px; } -/* Copy and paste your work from yesterday here and start to refactor into flexbox */ \ No newline at end of file +/* Copy and paste your work from yesterday here and start to refactor into flexbox */ + +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} + +/* Set every element's box-sizing to border-box */ +* { + box-sizing: border-box; +} + +html, body { + height: 100%; + font-family: 'Titillium Web', sans-serif; +} + +h1, h2, h3, h4, h5 { + font-family: 'Bangers', cursive; + letter-spacing: 1px; + margin-bottom: 15px; +} + +/* Your code starts here! */ + +header{ + display:inline-block; + margin:0 auto; + word-spacing:95px; + font-size: 18px; + font-weight: bold; + width:100%; + color:lightgray; + padding:30px; + text-align: center; + +} +h1{ + display: inline-block; + margin-left:100px; + font-size:100px; + text-align: center; + height:300px; + width:500px; + +} + +.title { + display: inline-block; + height:750%; + width:48%; + background-color:; + margin:100px +} + +.Get-started { + font-size: 22px ; + height:7%; + width:240px; + border:2px solid black ; + text-align: center; + margin-left: 34%; + +} + +a{ + color:grey; +} + +.section-one { + display: inline-block; + width:100%; +} + +hr{ + border-top:1px solid black; + width:100%; +} + +.section-two{ + height:150px; + margin-top: 50px; + +} +.Features{ + width:46%; + height: 90%; + font-size: 20px; + display: inline-block; + font-weight:bold; + text-align:left; +} + +.about{ + font-size:20px; + margin-left:69px; + width:48%; + height:90%; + display: inline-block; + font-weight:bold; + text-align:left; +} +.middle-img{ + background-size: cover; + width:100%; + padding:10px; +} + +.section-three{ + display:inline; + width:100%; + height:30%; + display:inline-block; +} + +.services{ + margin-top: 50px;; + font-size:20px; + font-weight:bold; + width:425px; + height:98%; + text-align:left; + display:inline-block; +} +.product{ + font-size:20px; + font-weight:bold; + width:425px; + height:98%; + margin-left:20px; + text-align:left; + display:inline-block; +} +.visions{ + font-size:20px; + font-weight:bold; + width:425px; + height:98%; + margin-left:20px; + text-align:left; + display:inline-block; + +} +.section-four{ + height:180px; +} + + +.contact{ + display:inline; + line-height: 20px; + font-size: 22px; + font-weight: bold; + width:33%; + text-align:left; + display:block +} + +.phone-number{ + + font-weight: bold; + font-size: 22px; + display:block; + width:33%; + line-height:100px; +} +.email{ + font-size:22px; + font-weight:bold; + width:33%; + +} + +.copyright{ + text-align:center; +} + +body{ + margin:50px; + +} \ No newline at end of file diff --git a/great-idea/index.html b/great-idea/index.html index 140152648..8b45742f8 100644 --- a/great-idea/index.html +++ b/great-idea/index.html @@ -21,4 +21,99 @@ -

hello world

\ No newline at end of file + + + + + + + Great Idea! + + + + + + + + + +
+ + +
+
+
+

Innovation + On +

Demand

+

+ +
+ Image of a code snippet. +
+ +
+ +
+
+

Features

+

Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.

+
+
+

About

+

Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.

+
+
+ +
+ Image of code snippets across the screen +
+
+
+

Services

+

Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.

+
+
+

Product

+

Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.

+
+
+

Vision

+

Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.

+
+
+
+ +
+
+
+
+

Contact

+ 123 Way 456 Street
+ Somewhere, USA
+
+
+ 1 (888) 888-8888
+
+ + + +
+ +
+ + \ No newline at end of file From 25dd13379e9add69c805f969a24a2a6c21697c7e Mon Sep 17 00:00:00 2001 From: RJ Date: Thu, 20 Feb 2020 21:33:05 -0500 Subject: [PATCH 3/5] finished adding with flex box --- great-idea/css/index.css | 160 +++++++++++++-------------------------- great-idea/index.html | 22 ++++-- 2 files changed, 68 insertions(+), 114 deletions(-) diff --git a/great-idea/css/index.css b/great-idea/css/index.css index 53cb00aac..afb46fc72 100644 --- a/great-idea/css/index.css +++ b/great-idea/css/index.css @@ -70,84 +70,45 @@ h1, h2, h3, h4, h5 { License: none (public domain) */ -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -b, u, i, center, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, embed, -figure, figcaption, footer, header, hgroup, -menu, nav, output, ruby, section, summary, -time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; -} -/* HTML5 display-role reset for older browsers */ -article, aside, details, figcaption, figure, -footer, header, hgroup, menu, nav, section { - display: block; -} -body { - line-height: 1; -} -ol, ul { - list-style: none; -} -blockquote, q { - quotes: none; -} -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; - content: none; -} -table { - border-collapse: collapse; - border-spacing: 0; -} -/* Set every element's box-sizing to border-box */ -* { - box-sizing: border-box; -} +/* Your code starts here! */ -html, body { - height: 100%; - font-family: 'Titillium Web', sans-serif; +body{ + border: 1px; + padding: 100px; + padding-top: 3%; + } -h1, h2, h3, h4, h5 { - font-family: 'Bangers', cursive; - letter-spacing: 1px; - margin-bottom: 15px; + +.nav-header{ width: 100%; + display: flex; + flex-direction: center; + justify-content: space-evenly; + color:lightgrey; + font-size: 18px; + font-weight:bold; } -/* Your code starts here! */ +a .services{ + color:lightgrey; +} -header{ - display:inline-block; - margin:0 auto; - word-spacing:95px; - font-size: 18px; - font-weight: bold; +.section-one { + display: flex; + justify-content: space-evenly; + padding:5px; width:100%; - color:lightgray; - padding:30px; - text-align: center; + margin-top: 100px; + margin-bottom: 100px; } + h1{ - display: inline-block; - margin-left:100px; + display: flex; + justify-content:flex-start; font-size:100px; + flex-direction: column; text-align: center; height:300px; width:500px; @@ -155,38 +116,31 @@ h1{ } .title { - display: inline-block; - height:750%; - width:48%; - background-color:; - margin:100px + display:flex; + justify-content: center; + flex-direction:column; + } .Get-started { + display: flex; + justify-content: space-evenly; + margin-left: 125px; font-size: 22px ; height:7%; width:240px; border:2px solid black ; - text-align: center; - margin-left: 34%; } - -a{ - color:grey; -} - -.section-one { - display: inline-block; - width:100%; -} + hr{ - border-top:1px solid black; + border-top:2px solid black; width:100%; } .section-two{ + display:flex; height:150px; margin-top: 50px; @@ -195,7 +149,6 @@ hr{ width:46%; height: 90%; font-size: 20px; - display: inline-block; font-weight:bold; text-align:left; } @@ -205,7 +158,6 @@ hr{ margin-left:69px; width:48%; height:90%; - display: inline-block; font-weight:bold; text-align:left; } @@ -216,75 +168,71 @@ hr{ } .section-three{ - display:inline; width:100%; - height:30%; - display:inline-block; + height:25%; + display:flex; + justify-content: space-evenly; + margin-top:50px; + margin-bottom:40px; } .services{ - margin-top: 50px;; font-size:20px; font-weight:bold; width:425px; height:98%; text-align:left; - display:inline-block; } .product{ font-size:20px; font-weight:bold; width:425px; height:98%; - margin-left:20px; + margin-left:30px; text-align:left; - display:inline-block; } .visions{ font-size:20px; font-weight:bold; width:425px; height:98%; - margin-left:20px; + margin-left:30px; text-align:left; - display:inline-block; } .section-four{ + display:flex; + flex-direction: column; height:180px; } .contact{ - display:inline; + display:flex; + justify-content: left; line-height: 20px; font-size: 22px; font-weight: bold; width:33%; - text-align:left; - display:block } .phone-number{ - + display:flex; font-weight: bold; font-size: 22px; - display:block; width:33%; line-height:100px; } .email{ font-size:22px; font-weight:bold; - width:33%; + width:20%; } .copyright{ - text-align:center; -} - -body{ - margin:50px; - + display:flex; + justify-content: center; + margin-top:20px; + font-weight:bold; } \ No newline at end of file diff --git a/great-idea/index.html b/great-idea/index.html index 8b45742f8..4eae28003 100644 --- a/great-idea/index.html +++ b/great-idea/index.html @@ -35,13 +35,17 @@ + + +
-