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.
+diff --git a/css/index.css b/css/index.css index 09344e0dc..3120568c8 100644 --- a/css/index.css +++ b/css/index.css @@ -1 +1,368 @@ -/* Use your CSS from RWD - I here. IF you don't have CSS, use the solution CSS from RWD - I*/ \ No newline at end of file +/* Use your CSS from RWD - I here. IF you don't have CSS, use the solution CSS from RWD - I*/ + +/* 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; +} + +html { + font-size: 62.5%; +} + +h1, h2, h3, h4, h5 { + font-family: 'Bangers', cursive; + letter-spacing: 1px; + margin-bottom: 15px; +} + +/* Your code starts here! */ +/* container */ +.container { + max-width: 880px; + margin: 0 auto; +} +/* header */ +header { + display: flex; + width: 100%; + justify-content: space-between; + margin: 10px auto; +} +header nav { + display: flex; + width: 70%; + justify-content: space-between; + align-items: center; +} +header nav a { + font-size: 1.5rem; + color: gray; + text-decoration: none; + font-weight: bold; +} +header .logo { + align-items: center; +} +/* cta */ +.cta { + display: flex; + width: 100%; + margin: 50px auto; +} +.cta .cta-text { + display: flex; + width: 50%; + flex-direction: column; + justify-content: center; + align-items: center; +} +.cta .cta-text h1 { + font-size: 7rem; + text-align: center; +} +.cta .cta-text button { + background-color: white; + font-size: 1.5rem; + border: 1px solid black; + padding: 1.5% 10%; +} +/* main content */ +.main-content { + display: flex; + flex-direction: column; + width: 100%; + padding-top: 1%; + padding-bottom: 1%; + border-top: 1px solid black; + border-bottom: 1px solid black; + margin: 10px; +} +.main-content .top-content { + display: flex; + width: 100%; + padding-top: 1%; + padding-bottom: 1%; +} +.main-content .middle-img { + padding-top: 1%; + padding-bottom: 1%; +} +.main-content .bottom-content { + display: flex; + width: 100%; + padding-top: 1%; + padding-bottom: 1%; +} +.main-content .bottom-content .text-content{ + padding-left: 1%; + padding-right: 1%; +} +/* contact */ +.contact { + display: flex; + width: 100%; + flex-direction: column; + padding-top: 2%; + padding-bottom: 2%; + margin-left: 2%; +} +.contact p { + margin-top: 1%; + margin-bottom: 1%; +} +footer { + display: flex; + width: 100%; + justify-content: center; + /*padding-top: 50px; */ + padding-bottom: 2%; +} + +h4 { + margin-top: 8%; + font-size: 1.5rem; +} + +p{ + font-size: 1.5rem; +} + +/* tablet version */ +@media (max-width: 800px) { + body { + max-width: 95%; + margin-left: 1%; + margin-right: 1%; + margin-top: 1%; + } + + .container { + margin: 0; + } + + nav { + /*margin: 20px 0 0 0; */ + margin: 1%; + } + + header nav { + width: 95%; + } + + .logo { + /* margin: 20px 0 10px 0; */ + margin: 1%; + } + + header { + flex-direction: column-reverse; + justify-content: space-around; + align-items: center; + margin: 1%; + } + + .cta img { + display: none; + } + + .cta { + flex-direction: row; + justify-content: center; + margin: 1%; + } + + .cta-text { + /* margin: 0 0 60px 0; */ + margin-bottom: 5%; + } + + button { + /* margin: 10px 0 0 0; */ + margin-bottom: 5%; + } + + .main-content { + padding: 0; + /* width: 760px; */ + width: 100%; + } + + .middle-img { + /* width: 760px; */ + width: 100%; + margin: 0 auto; + } + + .text-content { + /* margin: 10px; */ + margin: 1%; + } + + .contact { + /* padding: 10px 0 10px 20px; */ + display: flex; + width: 100%; + flex-direction: column; + padding-top: 2%; + padding-bottom: 2%; + margin-left: 2%; + } + + .contact p { + /* margin: 5px; */ + margin-top: 1%; + margin-bottom: 1%; + } + +} + +/* mobile version */ +/* try and remove paddings*/ +@media (max-width: 500px) { + body { + /* width: 500px; */ + max-width: 95%; + margin-left: 1%; + margin-right: 1%; + margin-top: 1%; + } + + .container { + /* width: 500px; */ + margin: 2%; + } + + nav { + display: flex; + flex-direction: column; + align-content: center; + } + + header nav a { + /* width: 500px; + font-size: 16px; + padding: 10px 0px 10px 0px; + text-align: center; + border-top: 1px solid lightgrey; + */ + width: 100%; + /*font-size: 16px; */ + font-size: 1.5rem; + padding: 5%; + text-align: center; + border-top: 1px solid lightgrey; + } + + header nav { + align-content: center; + justify-content: center; + text-align: center; + } + + .logo { + width: 55%; + } + + .main-content { + width: 100%; + padding-top: 1%; + padding-left: 1%; + padding-bottom: 1%; + } + + .middle-img { + /* width: 420px; */ + width: 100%; + margin: 0 auto; + } + + .cta { + + border-top: 1px solid lightgrey; + } + + .cta .cta-text h1 { + font-size: 7rem; + padding-top: 8%; + } + + .main-content .top-content{ + flex-direction: column; + margin: 0 auto; + padding: 0; + /* width: 450px; */ + width: 100%; + } + + .main-content .bottom-content { + display: block; + /* width: 450px; */ + width: 100%; + margin: 0 auto; + } + + .bottom-content .text-content { + /* width: 450px; */ + width: 100%; + } + .contact { + width: 100%; + /* margin: 0 auto; */ + margin: 3%; + padding-left: 2%; + } +} \ No newline at end of file diff --git a/index.html b/index.html index 6ee66a434..e0e44e2cf 100644 --- a/index.html +++ b/index.html @@ -17,5 +17,66 @@
+ +
+
+ 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.
+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.
+
+ 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.
+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.
+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.
+123 Way 456 Street
+ Somewhere, USA
1 (888) 888-8888
+sales@greatidea.io
+