From c418698fe395ee5b99dbc0e3756c427eed8b6d92 Mon Sep 17 00:00:00 2001 From: amberm Date: Mon, 10 Dec 2018 13:05:45 -0700 Subject: [PATCH 01/19] Top part of main page done --- css/index.css | 203 +++++++++++++++++++++++++++++++++++++++++++++++- index.html | 43 ++++++++-- less/index.less | 78 ++++++++++++++++++- 3 files changed, 316 insertions(+), 8 deletions(-) diff --git a/css/index.css b/css/index.css index e6b2b589c1..bf2efe199c 100644 --- a/css/index.css +++ b/css/index.css @@ -1 +1,202 @@ -/* Should be empty until you compile your LESS */ \ No newline at end of file +/*------------------------------------*\ +RESET +\*------------------------------------*/ +/* http://meyerweb.com/eric/tools/css/reset/ +v2.0b1 | 201101 +NOTE:WORK IN PROGRESS +USE WITH CAUTION AND TEST WITH ABANDON */ +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, +figcaption, +figure, +footer, +header, +hgroup, +menu, +nav, +section, +summary, +time, +mark, +audio, +video { + margin: 0; + padding: 0; + border: 0; + outline: 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; +} +ins { + text-decoration: none; +} +del { + text-decoration: line-through; +} +table { + border-collapse: collapse; + border-spacing: 0; +} +/* Your Code Goes Here */ +html { + font-size: 62.5%; +} +html, +body { + font-family: 'Roboto', Arial, sans-serif; +} +.container { + display: flex; + justify-content: center; + max-width: 800px; + margin: 0 auto; +} +@media (max-width: 600px) { + .container { + max-width: 490px; + width: 98%; + margin: 0 auto; + } +} +.allstuff { + position: relative; + text-align: center; + color: white; + border-bottom: 50px; +} +.leftish { + position: absolute; + text-align: left; + font-size: 6.5rem; + font-weight: bold; + bottom: 58px; + left: -20px; +} +.splitter { + display: flex; + justify-content: space-between; + align-items: center; + margin-top: 50px; + width: 95%; + margin-bottom: 50px; +} +.splitter h2 { + font-size: 2.5rem; + font-weight: bold; + padding-bottom: 20px; +} +.splitter p { + font-size: 1.7rem; + padding-bottom: 20px; +} +.splitter .part { + width: 44%; + text-align: left; + justify-content: center; +} +.splitter .part .butt { + background-color: white; + border-color: black; + color: black; + padding: 15px 32px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; +} diff --git a/index.html b/index.html index 8a84a17304..5e182f592b 100644 --- a/index.html +++ b/index.html @@ -1,10 +1,12 @@ + Home + @@ -12,8 +14,6 @@ -

You got this! Good luck.

- +
+ + +
Integrity,
Excellence,
Progress.
+ +
+ +
- + \ No newline at end of file diff --git a/less/index.less b/less/index.less index 6d3fc81ef9..ff4af18747 100644 --- a/less/index.less +++ b/less/index.less @@ -57,4 +57,80 @@ table{ border-spacing:0; } -/* Your Code Goes Here */ \ No newline at end of file +/* Your Code Goes Here */ +html { + font-size: 62.5%; +} + +html, body { + font-family: 'Roboto', Arial, sans-serif; +} + +.container { + display: flex; + justify-content: center; + max-width: 800px; + margin: 0 auto; + + @media (max-width: 600px) { + max-width: 490px; + width: 98%; + margin: 0 auto; + } +} + +.allstuff { + position: relative; + text-align: center; + color: white; + border-bottom: 50px; +} + +.leftish { + position: absolute; + text-align: left; + font-size: 6.5rem; + + font-weight: bold; + bottom: 58px; + left: -20px; +} + +.splitter { + display: flex; + justify-content: space-between; + align-items: center; + margin-top: 50px; + width: 95%; + margin-bottom: 50px; + + h2 { + font-size: 2.5rem; + font-weight: bold; + padding-bottom: 20px; + } + + p { + font-size: 1.7rem; + padding-bottom: 20px; + } + + .part { + width: 44%; + text-align: left; + justify-content: center; + + + .butt { + background-color: white; + border-color: black; + color: black; + padding: 15px 32px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + } + } + +} \ No newline at end of file From 08796d3b3ad6362a9eaebad165f54828d3dfd3e9 Mon Sep 17 00:00:00 2001 From: amberm Date: Mon, 10 Dec 2018 14:21:28 -0700 Subject: [PATCH 02/19] layout mostly done, gotta update content and footer --- css/index.css | 36 +++++++++++++++++++++++++++++ index.html | 61 ++++++++++++++++++++++++++++++++++++++----------- less/index.less | 53 ++++++++++++++++++++++++++++++++++++++---- 3 files changed, 133 insertions(+), 17 deletions(-) diff --git a/css/index.css b/css/index.css index bf2efe199c..8e58a64e5e 100644 --- a/css/index.css +++ b/css/index.css @@ -141,6 +141,11 @@ html, body { font-family: 'Roboto', Arial, sans-serif; } +h2 { + font-size: 2.5rem; + font-weight: bold; + text-align: left; +} .container { display: flex; justify-content: center; @@ -154,6 +159,9 @@ body { margin: 0 auto; } } +.aligner1 { + justify-content: left; +} .allstuff { position: relative; text-align: center; @@ -168,6 +176,34 @@ body { bottom: 58px; left: -20px; } +.allstuff2 { + position: relative; + text-align: center; + width: 88%; + color: white; + border-bottom: 50px; +} +.allstuff2 .right1 { + position: absolute; + bottom: -40px; + right: -23px; + letter-spacing: 8px; + font-size: 2.5rem; + background-color: #D8D8D8; + border: 3px; + color: black; + padding: 30px 72px; + text-align: center; + text-decoration: none; + display: inline-block; +} +.projectp { + font-size: 1.8rem; + width: 25%; + padding-top: 80px; + padding-bottom: 20px; + line-height: 150%; +} .splitter { display: flex; justify-content: space-between; diff --git a/index.html b/index.html index 5e182f592b..2040a843a1 100644 --- a/index.html +++ b/index.html @@ -42,7 +42,7 @@

Smith & Jones Artchitects

-


+
@@ -56,22 +56,57 @@

Futuristic Designs

+

- + diff --git a/less/index.less b/less/index.less index 7d988fab8e..3bc3f7c53d 100644 --- a/less/index.less +++ b/less/index.less @@ -210,7 +210,17 @@ h2 { h2 { font-size: 2rem; - padding-bottom: 20px; + //padding-bottom: 20px; + } + + input[type=text], select { + width: 90%; + padding: 12px 20px; + margin: 8px 0; + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; } } @@ -227,4 +237,13 @@ h2 { line-height: 170%; } } +} + +.boot2{ + display: flex; + width:100%; + justify-content: center; + background-color: gray; + color: white; + padding: 8px 50px; } \ No newline at end of file From 63aa0e26440b95e231e5f01cec23504905d99914 Mon Sep 17 00:00:00 2001 From: amberm Date: Mon, 10 Dec 2018 16:46:00 -0700 Subject: [PATCH 05/19] mobile main site half done --- css/index.css | 101 ++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 6 ++- less/index.less | 94 +++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 198 insertions(+), 3 deletions(-) diff --git a/css/index.css b/css/index.css index f0bb636689..6125bbd91c 100644 --- a/css/index.css +++ b/css/index.css @@ -226,6 +226,15 @@ h2 { width: 95%; margin-bottom: 50px; } +@media (max-width: 600px) { + .splitter { + max-width: 490px; + width: 98%; + margin: 0 auto; + flex-direction: column-reverse; + padding-top: 25px; + } +} .splitter h2 { font-size: 2.5rem; font-weight: bold; @@ -240,6 +249,11 @@ h2 { text-align: left; justify-content: center; } +@media (max-width: 600px) { + .splitter .part { + width: 90%; + } +} .splitter .part .butt { background-color: white; border-color: black; @@ -250,6 +264,52 @@ h2 { display: inline-block; font-size: 16px; } +.splitter1 { + display: flex; + justify-content: space-between; + align-items: center; + margin-top: 50px; + width: 95%; + margin-bottom: 50px; +} +@media (max-width: 600px) { + .splitter1 { + max-width: 490px; + width: 98%; + margin: 0 auto; + flex-direction: column; + padding-top: 25px; + } +} +.splitter1 h2 { + font-size: 2.5rem; + font-weight: bold; + padding-bottom: 20px; +} +.splitter1 p { + font-size: 1.7rem; + padding-bottom: 20px; +} +.splitter1 .part { + width: 44%; + text-align: left; + justify-content: center; +} +@media (max-width: 600px) { + .splitter1 .part { + width: 90%; + } +} +.splitter1 .part .butt { + background-color: white; + border-color: black; + color: black; + padding: 15px 32px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; +} .boot { display: flex; width: 100%; @@ -258,12 +318,30 @@ h2 { color: white; padding: 50px; } +@media (max-width: 600px) { + .boot { + max-width: 490px; + width: 98%; + margin: 0 auto; + flex-direction: column; + } +} .boot .piece1 { width: 38%; } +@media (max-width: 600px) { + .boot .piece1 { + width: 90%; + } +} .boot .piece1 h2 { font-size: 2rem; } +@media (max-width: 600px) { + .boot .piece1 h2 { + font-size: 3rem; + } +} .boot .piece1 input[type=text], .boot .piece1 select { width: 90%; @@ -277,14 +355,30 @@ h2 { .boot .piece2 { width: 16%; } +@media (max-width: 600px) { + .boot .piece2 { + width: 90%; + padding: 3%; + } +} .boot .piece2 h2 { padding-bottom: 8px; font-size: 2rem; } +@media (max-width: 600px) { + .boot .piece2 h2 { + font-size: 3rem; + } +} .boot .piece2 h3 { font-size: 1.4rem; line-height: 170%; } +@media (max-width: 600px) { + .boot .piece2 h3 { + font-size: 2rem; + } +} .boot2 { display: flex; width: 100%; @@ -293,3 +387,10 @@ h2 { color: white; padding: 8px 50px; } +@media (max-width: 600px) { + .boot2 { + width: 90%; + font-size: 1.3rem; + text-align: left; + } +} diff --git a/index.html b/index.html index d1b722b40f..06c2174166 100644 --- a/index.html +++ b/index.html @@ -43,7 +43,7 @@

Smith & Jones Artchitects


-
+
@@ -148,7 +148,9 @@

202-555-0144

-
Copyright © 2018 Smith and Jones
+
+

Copyright © 2018 Smith and Jones

+
diff --git a/less/index.less b/less/index.less index 3bc3f7c53d..6214f4d83c 100644 --- a/less/index.less +++ b/less/index.less @@ -167,6 +167,63 @@ h2 { width: 95%; margin-bottom: 50px; + @media (max-width: 600px) { + max-width: 490px; + width: 98%; + margin: 0 auto; + flex-direction: column-reverse; + padding-top: 25px; + } + + h2 { + font-size: 2.5rem; + font-weight: bold; + padding-bottom: 20px; + } + + p { + font-size: 1.7rem; + padding-bottom: 20px; + } + + .part { + width: 44%; + text-align: left; + justify-content: center; + + @media (max-width: 600px) { + width: 90%; + } + + .butt { + background-color: white; + border-color: black; + color: black; + padding: 15px 32px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + } + } +} + +.splitter1 { + display: flex; + justify-content: space-between; + align-items: center; + margin-top: 50px; + width: 95%; + margin-bottom: 50px; + + @media (max-width: 600px) { + max-width: 490px; + width: 98%; + margin: 0 auto; + flex-direction: column; + padding-top: 25px; + } + h2 { font-size: 2.5rem; font-weight: bold; @@ -183,6 +240,9 @@ h2 { text-align: left; justify-content: center; + @media (max-width: 600px) { + width: 90%; + } .butt { background-color: white; @@ -205,12 +265,26 @@ h2 { color: white; padding: 50px; + @media (max-width: 600px) { + max-width: 490px; + width: 98%; + margin: 0 auto; + flex-direction: column; + } + .piece1 { width: 38%; + + @media (max-width: 600px){ + width: 90%; + } h2 { font-size: 2rem; - //padding-bottom: 20px; + + @media (max-width: 600px){ + font-size: 3rem; + } } input[type=text], select { @@ -227,14 +301,26 @@ h2 { .piece2 { width: 16%; + @media (max-width: 600px){ + width: 90%; + padding: 3%; + } h2{ padding-bottom: 8px; font-size: 2rem; + + @media (max-width: 600px){ + font-size: 3rem; + } } h3{ font-size: 1.4rem; line-height: 170%; + + @media (max-width: 600px){ + font-size: 2rem; + } } } } @@ -246,4 +332,10 @@ h2 { background-color: gray; color: white; padding: 8px 50px; + + @media (max-width: 600px){ + width: 90%; + font-size: 1.3rem; + text-align: left; + } } \ No newline at end of file From 9f360eaa3ce802e0fa7be2bfba8ab66cc027f468 Mon Sep 17 00:00:00 2001 From: amberm Date: Mon, 10 Dec 2018 18:09:46 -0700 Subject: [PATCH 06/19] now done with mobile version of index --- css/index.css | 104 +++++++++++++++++++++++++++++++++++++++++++++++- index.html | 18 ++++++--- less/index.less | 103 ++++++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 217 insertions(+), 8 deletions(-) diff --git a/css/index.css b/css/index.css index 6125bbd91c..47ea7903fd 100644 --- a/css/index.css +++ b/css/index.css @@ -149,6 +149,7 @@ h2 { .container { display: flex; justify-content: center; + align-content: center; max-width: 800px; margin: 0 auto; } @@ -176,6 +177,13 @@ h2 { bottom: 58px; left: -20px; } +@media (max-width: 600px) { + .leftish { + font-size: 4.8rem; + bottom: 58px; + left: 35px; + } +} .allstuff2 { position: relative; text-align: center; @@ -197,6 +205,12 @@ h2 { text-decoration: none; display: inline-block; } +@media (max-width: 600px) { + .allstuff2 .right1 { + bottom: -30px; + right: unset; + } +} .allstuff2 .left1 { position: absolute; bottom: -40px; @@ -211,6 +225,12 @@ h2 { text-decoration: none; display: inline-block; } +@media (max-width: 600px) { + .allstuff2 .left1 { + bottom: -30px; + left: unset; + } +} .projectp { font-size: 1.8rem; width: 25%; @@ -218,6 +238,11 @@ h2 { padding-bottom: 20px; line-height: 150%; } +@media (max-width: 600px) { + .projectp { + width: 88%; + } +} .splitter { display: flex; justify-content: space-between; @@ -324,6 +349,7 @@ h2 { width: 98%; margin: 0 auto; flex-direction: column; + padding: 40px 30px; } } .boot .piece1 { @@ -358,7 +384,7 @@ h2 { @media (max-width: 600px) { .boot .piece2 { width: 90%; - padding: 3%; + padding-top: 10px; } } .boot .piece2 h2 { @@ -392,5 +418,81 @@ h2 { width: 90%; font-size: 1.3rem; text-align: left; + padding: 5px 30px; + } +} +.img1 { + display: unset; +} +@media (max-width: 600px) { + .img1 { + display: none; + } +} +.img1a { + display: none; +} +@media (max-width: 600px) { + .img1a { + display: unset; + width: 99%; + height: 360px; + } +} +.img2 { + display: unset; +} +@media (max-width: 600px) { + .img2 { + display: none; + } +} +.img2a { + display: none; +} +@media (max-width: 600px) { + .img2a { + display: unset; + width: 99%; + height: 360px; + padding-bottom: 10px; + } +} +.img3 { + display: unset; +} +@media (max-width: 600px) { + .img3 { + display: none; + } +} +.img3a { + display: none; +} +@media (max-width: 600px) { + .img3a { + display: unset; + width: 99%; + height: 360px; + padding-bottom: 10px; + } +} +.img4 { + display: unset; +} +@media (max-width: 600px) { + .img4 { + display: none; + } +} +.img4a { + display: none; +} +@media (max-width: 600px) { + .img4a { + display: unset; + width: 90%; + height: 360px; + padding-bottom: 10px; } } diff --git a/index.html b/index.html index 06c2174166..c8245721ad 100644 --- a/index.html +++ b/index.html @@ -24,7 +24,8 @@
- + +
Integrity,
Excellence,
Progress.
@@ -38,7 +39,8 @@

Smith & Jones Artchitects

- + +
@@ -46,7 +48,8 @@

Smith & Jones Artchitects

- + +
@@ -64,7 +67,8 @@

Recent Projects




- + +
THE VILLAS

@@ -79,7 +83,8 @@

Recent Projects




- + +
OUTSKIRTS

@@ -94,7 +99,8 @@

Recent Projects




- + +
THE BLOCKS

diff --git a/less/index.less b/less/index.less index 6214f4d83c..a92a626492 100644 --- a/less/index.less +++ b/less/index.less @@ -75,6 +75,7 @@ h2 { .container { display: flex; justify-content: center; + align-content: center; max-width: 800px; margin: 0 auto; @@ -103,6 +104,12 @@ h2 { font-weight: bold; bottom: 58px; left: -20px; + + @media (max-width: 600px){ + font-size: 4.8rem; + bottom: 58px; + left: 35px; + } } .allstuff2{ @@ -128,6 +135,10 @@ h2 { text-decoration: none; display: inline-block; + @media (max-width: 600px){ + bottom: -30px; + right: unset; + } } .left1 { @@ -146,6 +157,10 @@ h2 { text-decoration: none; display: inline-block; + @media (max-width: 600px){ + bottom: -30px; + left: unset; + } } } @@ -156,6 +171,10 @@ h2 { padding-top: 80px; padding-bottom: 20px; line-height: 150%; + + @media (max-width: 600px){ + width:88%; + } } @@ -172,6 +191,7 @@ h2 { width: 98%; margin: 0 auto; flex-direction: column-reverse; + padding-top: 25px; } @@ -270,6 +290,7 @@ h2 { width: 98%; margin: 0 auto; flex-direction: column; + padding: 40px 30px; } .piece1 { @@ -303,7 +324,8 @@ h2 { @media (max-width: 600px){ width: 90%; - padding: 3%; + padding-top: 10px; + } h2{ padding-bottom: 8px; @@ -337,5 +359,84 @@ h2 { width: 90%; font-size: 1.3rem; text-align: left; + padding: 5px 30px; + } +} + +.img1 { + display:unset; + + @media (max-width: 600px){ + display:none; + } +} + +.img1a { + display:none; + + @media (max-width: 600px){ + display:unset; + width: 99%; + height: 360px; + } +} + +.img2 { + display:unset; + + @media (max-width: 600px){ + display:none; + } +} + +.img2a { + display:none; + + @media (max-width: 600px){ + display:unset; + //justify-content: center; + width: 99%; + height: 360px; + padding-bottom: 10px; + } +} + +.img3 { + display:unset; + + @media (max-width: 600px){ + display:none; + } +} + +.img3a { + display:none; + + @media (max-width: 600px){ + display:unset; + + width: 99%; + height: 360px; + padding-bottom: 10px; + } +} + +.img4 { + display:unset; + + @media (max-width: 600px){ + display:none; + } +} + +.img4a { + display:none; + + @media (max-width: 600px){ + display:unset; + + width: 90%; + height: 360px; + padding-bottom: 10px; } } \ No newline at end of file From 0cf430f60bcb64d1a3a06574e4611e382c688559 Mon Sep 17 00:00:00 2001 From: amberm Date: Tue, 11 Dec 2018 09:49:10 -0700 Subject: [PATCH 07/19] made services page, but inside nav nonfunc --- css/index.css | 25 ++++++++++++++++++ less/index.less | 32 +++++++++++++++++++++++ services.html | 68 ++++++++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 124 insertions(+), 1 deletion(-) diff --git a/css/index.css b/css/index.css index 47ea7903fd..d8abaf25c1 100644 --- a/css/index.css +++ b/css/index.css @@ -243,6 +243,13 @@ h2 { width: 88%; } } +.projectp2 { + font-size: 1.8rem; + width: 100%; + padding-top: 50px; + padding-bottom: 20px; + line-height: 150%; +} .splitter { display: flex; justify-content: space-between; @@ -496,3 +503,21 @@ h2 { padding-bottom: 10px; } } +.divider { + display: flex; + justify-content: space-between; + width: 100%; + padding-top: 20px; + padding-bottom: 20px; +} +.divider .divbut { + width: 18%; + border: 2px solid black; + background-color: white; + color: black; + padding: 15px 15px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; +} diff --git a/less/index.less b/less/index.less index a92a626492..dc58282ef2 100644 --- a/less/index.less +++ b/less/index.less @@ -177,6 +177,18 @@ h2 { } } +.projectp2 { + font-size: 1.8rem; + width: 100%; + padding-top: 50px; + padding-bottom: 20px; + line-height: 150%; + + //@media (max-width: 600px){ + // width:88%; + //} +} + .splitter { display: flex; @@ -439,4 +451,24 @@ h2 { height: 360px; padding-bottom: 10px; } +} + +.divider { + display: flex; + justify-content: space-between; + width: 100%; + padding-top: 20px; + padding-bottom: 20px; + + .divbut { + width: 18%; + border: 2px solid black; + background-color: white; + color: black; + padding: 15px 15px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + } } \ No newline at end of file diff --git a/services.html b/services.html index fb5a79e18a..24dec38c57 100644 --- a/services.html +++ b/services.html @@ -11,8 +11,28 @@ +
+ + + +

Services

+ +
+ +
+

Services include: completely synergize resource taxing relationships via premier niche markets. Professionally cultivate one-to-one customer service with robust ideas. Dynamically innovate resource-leveling customer service for state of the art customer service. +
+

+ +
+ +
Pre-Construction
+
Construction
+
Design Build
+
Sustainability
+ +
-

Services

+
+ +
+

Interested in starting a project?

+

Let’s talk:

+
+
+
+

We'll never share your email with anyone else.

+
+ +
+

New York

+
+

123 Lane

+

Suite 100

+

Albany, NY 12345

+

202-555-0144

+
+
+ +
+

Florida

+
+

123 Lane

+

Suite 100

+

Albany, NY 12345

+

202-555-0144

+
+
+ +
+

California

+
+

123 Lane

+

Suite 100

+

Albany, NY 12345

+

202-555-0144

+
+
+ +
+
+

Copyright © 2018 Smith and Jones

+
+ From 6abfcf8d42b73cce80217df237982863ce98738d Mon Sep 17 00:00:00 2001 From: amberm Date: Tue, 11 Dec 2018 11:41:42 -0700 Subject: [PATCH 08/19] got a bar at the top, gotta make it better though --- css/index.css | 11 +++++++++++ index.html | 12 +++++------- less/index.less | 17 +++++++++++++++++ 3 files changed, 33 insertions(+), 7 deletions(-) diff --git a/css/index.css b/css/index.css index d8abaf25c1..7792ab216c 100644 --- a/css/index.css +++ b/css/index.css @@ -160,6 +160,17 @@ h2 { margin: 0 auto; } } +.navbarthingy { + background-color: #D8D8D8; + position: fixed; + top: 0; + height: 50px; + width: 1024px; + color: white; + display: flex; + align-content: center; + z-index: 2; +} .aligner1 { justify-content: left; } diff --git a/index.html b/index.html index c8245721ad..7573748829 100644 --- a/index.html +++ b/index.html @@ -12,15 +12,13 @@ - - + + +
diff --git a/less/index.less b/less/index.less index dc58282ef2..bba812b233 100644 --- a/less/index.less +++ b/less/index.less @@ -66,6 +66,7 @@ html, body { font-family: 'Roboto', Arial, sans-serif; } + h2 { font-size: 2.5rem; font-weight: bold; @@ -86,6 +87,22 @@ h2 { } } +.navbarthingy { + //overflow: hidden; + background-color: #D8D8D8; + position: fixed; + top: 0; + height: 50px; + width:1024px; + color: white; + display:flex; + + align-content: center; + z-index:2; +} + + + .aligner1 { justify-content: left; } From 8fd4efc5e954abbb7291c5e850e7c7af79681c11 Mon Sep 17 00:00:00 2001 From: amberm Date: Tue, 11 Dec 2018 12:05:48 -0700 Subject: [PATCH 09/19] top bar looking good, now to make it function --- css/index.css | 23 ++++++++++++++++++++--- index.html | 10 +++++++--- less/index.less | 29 ++++++++++++++++++++++++----- services.html | 9 +++++++++ 4 files changed, 60 insertions(+), 11 deletions(-) diff --git a/css/index.css b/css/index.css index 7792ab216c..21ed5c9607 100644 --- a/css/index.css +++ b/css/index.css @@ -160,17 +160,34 @@ h2 { margin: 0 auto; } } -.navbarthingy { +.topalign { + display: flex; + justify-content: center; + align-content: center; +} +.topalign .navbarthingy { background-color: #D8D8D8; position: fixed; top: 0; - height: 50px; + height: 40px; width: 1024px; color: white; display: flex; - align-content: center; + justify-content: space-between; + align-content: baseline; + padding-top: 15px; z-index: 2; } +.topalign .navbarthingy .nav1 { + width: 10%; + padding-left: 100px; +} +.topalign .navbarthingy .nav2 { + width: 10%; +} +.topalign .navbarthingy .navie { + display: unset; +} .aligner1 { justify-content: left; } diff --git a/index.html b/index.html index 7573748829..a16b393046 100644 --- a/index.html +++ b/index.html @@ -13,9 +13,13 @@ - -