From 3b802d6be60c87501ef8b7a0c6d2c3f3926ffa72 Mon Sep 17 00:00:00 2001 From: Ryan Frazier Date: Mon, 7 Aug 2017 20:03:55 -0600 Subject: [PATCH 01/14] starting set up for html/css --- HTML:CSS/Assets/SVGs/account.svg | 2 +- HTML:CSS/Assets/SVGs/contact.svg | 2 +- HTML:CSS/Assets/SVGs/search.svg | 2 +- HTML:CSS/css/style.css | 58 ++++++++++++++++++++++++++++++++ HTML:CSS/index.html | 32 ++++++++++++++++++ 5 files changed, 93 insertions(+), 3 deletions(-) create mode 100644 HTML:CSS/css/style.css create mode 100644 HTML:CSS/index.html diff --git a/HTML:CSS/Assets/SVGs/account.svg b/HTML:CSS/Assets/SVGs/account.svg index 3136b8f..f1c41ea 100755 --- a/HTML:CSS/Assets/SVGs/account.svg +++ b/HTML:CSS/Assets/SVGs/account.svg @@ -1 +1 @@ -account \ No newline at end of file +account diff --git a/HTML:CSS/Assets/SVGs/contact.svg b/HTML:CSS/Assets/SVGs/contact.svg index 239194d..409888d 100755 --- a/HTML:CSS/Assets/SVGs/contact.svg +++ b/HTML:CSS/Assets/SVGs/contact.svg @@ -1 +1 @@ -contact \ No newline at end of file +contact diff --git a/HTML:CSS/Assets/SVGs/search.svg b/HTML:CSS/Assets/SVGs/search.svg index 0791b79..9ad381d 100755 --- a/HTML:CSS/Assets/SVGs/search.svg +++ b/HTML:CSS/Assets/SVGs/search.svg @@ -1 +1 @@ -search \ No newline at end of file +search diff --git a/HTML:CSS/css/style.css b/HTML:CSS/css/style.css new file mode 100644 index 0000000..12600fb --- /dev/null +++ b/HTML:CSS/css/style.css @@ -0,0 +1,58 @@ +html{ + font-size: .9rem; +} + +.tenLogo { + width: 20%; +} + +.eighty { + width: 80%; +} + +.noBullet, .menu { + list-style: none; +} + +.searchBar { + background: #AAAAAA; +} + +.teal { + background: #2C99A4; +} +#inputForm { + /*margin: auto;*/ +} + +#searchButton, #searchText, .menu { + margin: auto; + color: white; +} + +.menu { + text-decoration: underline; +} + +.searchBar { + display: flex; + justify-content: flex-start; + align-content: center; +} + +@media (max-width: 576px) { + #searchText, .empty, .menu { + display: none; } } + +@media (min-width: 577px) { + #searchButton { + display: none; } } + +#noMargin { + margin: 0; +} + +.hundred { + width: 100%; + margin: auto; +} diff --git a/HTML:CSS/index.html b/HTML:CSS/index.html new file mode 100644 index 0000000..ef24603 --- /dev/null +++ b/HTML:CSS/index.html @@ -0,0 +1,32 @@ + + + + + Booj Realtor + + + + + + + + + + + + + + + + + From 77d62bed3316d52f9f63b3c74d56482140e333a4 Mon Sep 17 00:00:00 2001 From: Ryan Frazier Date: Tue, 8 Aug 2017 09:55:05 -0600 Subject: [PATCH 02/14] divs lining up for realtor image --- HTML:CSS/css/style.css | 52 +++++++++++++++++++++++++++++++----------- HTML:CSS/index.html | 43 +++++++++++++++++++++++++++------- 2 files changed, 74 insertions(+), 21 deletions(-) diff --git a/HTML:CSS/css/style.css b/HTML:CSS/css/style.css index 12600fb..73051f2 100644 --- a/HTML:CSS/css/style.css +++ b/HTML:CSS/css/style.css @@ -1,5 +1,5 @@ html{ - font-size: .9rem; + font-size: .8rem; } .tenLogo { @@ -14,38 +14,48 @@ html{ list-style: none; } -.searchBar { +.search-bar { + width: 100%; background: #AAAAAA; } .teal { background: #2C99A4; } -#inputForm { - /*margin: auto;*/ +#input-form { + margin: auto; } -#searchButton, #searchText, .menu { +#search-button, .menu { margin: auto; color: white; } -.menu { - text-decoration: underline; -} + #search-text { + /*margin: auto -20px auto 20px;*/ + color: white; + } -.searchBar { +.search { display: flex; - justify-content: flex-start; - align-content: center; + margin: auto; + width: 100%; +} + +.menu { + text-decoration: underline; } @media (max-width: 576px) { - #searchText, .empty, .menu { + #search-text, .menu { + display: none; } } + +@media (max-width: 768px) { + .empty { display: none; } } @media (min-width: 577px) { - #searchButton { + #search-button { display: none; } } #noMargin { @@ -56,3 +66,19 @@ html{ width: 100%; margin: auto; } + +#realtor-image { + display: inline-block; + max-width: 100%; + height: auto; + /*max-height: 360px;*/ + padding: 0; +} + +#sara { + padding: 0; +} + +button { + color: white; +} diff --git a/HTML:CSS/index.html b/HTML:CSS/index.html index ef24603..4621cb0 100644 --- a/HTML:CSS/index.html +++ b/HTML:CSS/index.html @@ -11,16 +11,37 @@ + + - -
-
-
- Realtor Image -
-
-
-

Jane Smith


-

REALTOR®

+
+
+
+
+ Realtor Image +
+
+
+
+
+
+

Jane Smith

+

REALTOR®

+
+
+
+ +
+
+ +
+
-
From 0a758fdbfda39d4421588eb9f16ffc7f42042727 Mon Sep 17 00:00:00 2001 From: Ryan Frazier Date: Tue, 8 Aug 2017 12:10:39 -0600 Subject: [PATCH 04/14] starting additional info section --- HTML:CSS/css/style.css | 33 +++++++++++++++++++++++++++++++-- HTML:CSS/index.html | 34 +++++++++++++++++++--------------- 2 files changed, 50 insertions(+), 17 deletions(-) diff --git a/HTML:CSS/css/style.css b/HTML:CSS/css/style.css index c1ca264..f8fa8f8 100644 --- a/HTML:CSS/css/style.css +++ b/HTML:CSS/css/style.css @@ -1,5 +1,6 @@ -html{ - font-size: .8rem; +html, body { + font-family: 'Lato', sans-serif; + font-size: 14px; } .tenLogo { @@ -17,6 +18,8 @@ html{ .search-bar { width: 100%; background: #AAAAAA; + padding-top: 5px; + padding-bottom: 5px; } .teal { @@ -99,3 +102,29 @@ button { @media (max-width: 576px) { .realtor-info { padding: 0; } } + +.info-container { + height: 100%; + display: flex; + flex-direction: column; + justify-content: center; +} + +.info-row { + margin-top: 15px; +} + +.info-row h1 { + color: #323232; +} + +.info-row p { + color: #858585; +} + +.additional-info-container { + height: 100%; + display: flex; + flex-direction: column; + justify-content: center; +} diff --git a/HTML:CSS/index.html b/HTML:CSS/index.html index 15cc06c..aa2089c 100644 --- a/HTML:CSS/index.html +++ b/HTML:CSS/index.html @@ -6,6 +6,7 @@ + @@ -20,9 +21,9 @@
- New Listing - Open Houses - Map Search + NEW LISTING + OPEN HOUSES + MAP SEARCH
@@ -35,20 +36,18 @@ Realtor Image
-
-
-
-
-

Jane Smith

-

REALTOR®

-
+
+
+
+

Jane Smith

+
+
+

REALTOR®

-
- +
+
-
+
+
+
+ +
+
From f1fbc68456cdfc59a26bde1b699711a3a47103bd Mon Sep 17 00:00:00 2001 From: Ryan Frazier Date: Tue, 8 Aug 2017 13:08:11 -0600 Subject: [PATCH 05/14] realtor info section done --- HTML:CSS/Assets/SVGs/contact.svg | 2 +- HTML:CSS/Assets/SVGs/enewsletter.svg | 2 +- HTML:CSS/Assets/SVGs/office.svg | 2 +- HTML:CSS/Assets/SVGs/website.svg | 2 +- HTML:CSS/css/style.css | 83 ++++++++++++++++++++++------ HTML:CSS/index.html | 37 +++++++++---- 6 files changed, 95 insertions(+), 33 deletions(-) diff --git a/HTML:CSS/Assets/SVGs/contact.svg b/HTML:CSS/Assets/SVGs/contact.svg index 409888d..2162fe5 100755 --- a/HTML:CSS/Assets/SVGs/contact.svg +++ b/HTML:CSS/Assets/SVGs/contact.svg @@ -1 +1 @@ -contact +contact diff --git a/HTML:CSS/Assets/SVGs/enewsletter.svg b/HTML:CSS/Assets/SVGs/enewsletter.svg index aa5eac3..a94a881 100755 --- a/HTML:CSS/Assets/SVGs/enewsletter.svg +++ b/HTML:CSS/Assets/SVGs/enewsletter.svg @@ -1 +1 @@ -enewsletter \ No newline at end of file +enewsletter diff --git a/HTML:CSS/Assets/SVGs/office.svg b/HTML:CSS/Assets/SVGs/office.svg index 5d96198..d6d6619 100755 --- a/HTML:CSS/Assets/SVGs/office.svg +++ b/HTML:CSS/Assets/SVGs/office.svg @@ -1 +1 @@ -office \ No newline at end of file +office diff --git a/HTML:CSS/Assets/SVGs/website.svg b/HTML:CSS/Assets/SVGs/website.svg index 7eba2a0..429bf13 100755 --- a/HTML:CSS/Assets/SVGs/website.svg +++ b/HTML:CSS/Assets/SVGs/website.svg @@ -1 +1 @@ -website \ No newline at end of file +website diff --git a/HTML:CSS/css/style.css b/HTML:CSS/css/style.css index f8fa8f8..eca6260 100644 --- a/HTML:CSS/css/style.css +++ b/HTML:CSS/css/style.css @@ -11,7 +11,7 @@ html, body { width: 80%; } -.noBullet, .menu { +.no-bullet, .menu { list-style: none; } @@ -29,7 +29,7 @@ html, body { margin: auto 0; } -#search-button, .menu { +#search-button, .menu, .menu a{ margin: auto; color: white; } @@ -37,6 +37,7 @@ html, body { #search-text { /*margin: auto -20px auto 20px;*/ color: white; + padding: initial; } .search { @@ -48,18 +49,6 @@ html, body { text-decoration: underline; } -@media (max-width: 576px) { - #search-text, .menu { - display: none; } } - -@media (max-width: 768px) { - #empty, #empty1 { - display: none; } } - -@media (min-width: 577px) { - #search-button { - display: none; } } - #noMargin { margin: 0; } @@ -93,15 +82,13 @@ button { justify-content: space-between; padding: 0; margin-top: 10px; + margin-bottom: 10px; } button { width: 100%; } -@media (max-width: 576px) { - .realtor-info { - padding: 0; } } .info-container { height: 100%; @@ -126,5 +113,67 @@ button { height: 100%; display: flex; flex-direction: column; + justify-content: space-around; + padding: 0; +} + +.list-holder ul li { + font-size: 18px; +} + +.info-list { + height: 100%; + width: auto; + margin: 10px 10px 10px 0; +} + +/*.list-holder { + display: flex; + flex-direction: column-reverse; justify-content: center; +}*/ + +.list-holder ul { + padding: 0; } + +.list-unstyled span { + color: #5C5C5C; +} + +.list-unstyled a { + color: #2C99A5; +} + +@media (max-width: 576px) { + .realtor-info, .additional-info { + padding: 0; } } + + +@media (max-width: 576px) { + #search-text, .menu { + display: none; } } + +@media (max-width: 576px) { + .search { + padding-left: 0; } } + +@media (max-width: 768px) { + #empty, #empty1 { + display: none; } } + +@media (max-width: 768px) { + .list-unstyled { + font-size: 14px!important; } } + +@media (max-width: 992px) { + .menu { + font-size: 12px!important; } } + +@media (min-width: 577px) { + #search-button { + display: none; } } + +@media (max-width: 768px) and (min-width: 576px) { + .info-row h1 { + font-size: 2rem!important; } } diff --git a/HTML:CSS/index.html b/HTML:CSS/index.html index aa2089c..846be88 100644 --- a/HTML:CSS/index.html +++ b/HTML:CSS/index.html @@ -21,9 +21,9 @@
- NEW LISTING - OPEN HOUSES - MAP SEARCH + + +
@@ -58,9 +58,28 @@

Jane Smith

-
-
- +
+
+
+ +
@@ -73,9 +92,3 @@

Jane Smith

- From 3191e3980b46f1b003e1a55bcb8dbeb1baab0885 Mon Sep 17 00:00:00 2001 From: Ryan Frazier Date: Tue, 8 Aug 2017 14:11:04 -0600 Subject: [PATCH 06/14] starting adding tabs to third section --- HTML:CSS/css/style.css | 19 ++++++++++--------- HTML:CSS/index.html | 37 +++++++++++++++++++++++++++++++++++-- HTML:CSS/js/main.js | 1 + 3 files changed, 46 insertions(+), 11 deletions(-) create mode 100644 HTML:CSS/js/main.js diff --git a/HTML:CSS/css/style.css b/HTML:CSS/css/style.css index eca6260..2fb0b50 100644 --- a/HTML:CSS/css/style.css +++ b/HTML:CSS/css/style.css @@ -35,7 +35,6 @@ html, body { } #search-text { - /*margin: auto -20px auto 20px;*/ color: white; padding: initial; } @@ -49,8 +48,10 @@ html, body { text-decoration: underline; } -#noMargin { - margin: 0; +#contact-button { + font-size: 18px; + letter-spacing: .05em; + font-weight: 500; } .hundred { @@ -145,20 +146,20 @@ button { color: #2C99A5; } -@media (max-width: 576px) { +@media (max-width: 575px) { .realtor-info, .additional-info { padding: 0; } } -@media (max-width: 576px) { +@media (max-width: 575px) { #search-text, .menu { display: none; } } -@media (max-width: 576px) { +@media (max-width: 575px) { .search { padding-left: 0; } } -@media (max-width: 768px) { +@media (max-width: 767px) { #empty, #empty1 { display: none; } } @@ -166,11 +167,11 @@ button { .list-unstyled { font-size: 14px!important; } } -@media (max-width: 992px) { +@media (max-width: 991px) { .menu { font-size: 12px!important; } } -@media (min-width: 577px) { +@media (min-width: 576px) { #search-button { display: none; } } diff --git a/HTML:CSS/index.html b/HTML:CSS/index.html index 846be88..38cf9a7 100644 --- a/HTML:CSS/index.html +++ b/HTML:CSS/index.html @@ -44,8 +44,8 @@

Jane Smith

REALTOR®

-
- +
+
+
+ + +
+
Lorem ipsum dolor sit amet dui sit sapien sem auctor nec elit. Mauris libero nunc malesuada porta netus. Ultrices sit id lorem tortor elementum purus primis quis aliquet augue vestibulum. In enim nec. At tempor consectetuer. Non magna vel. Fames + amet feugiat. Tempor vel laoreet lectus ut ut mi vestibulum donec. Mauris mauris nunc donec at blandit. Sem et pede cursus quis accumsan. Diam in turpis curabitur enim porttitor. Lectus parturient ipsum. Lobortis dolor massa. Orci nibh nec hac + suspendisse non. Enim velit sed. Aliquam felis dolor. Urna pellentesque risus lacinia aliquam at et erat urna vel nullam accumsan sem.
+
Bacon ipsum dolor amet hamburger porchetta culpa sunt commodo duis ut fatback tongue. Lorem qui shoulder, occaecat deserunt irure dolor fatback fugiat. Hamburger fugiat incididunt salami, sirloin bresaola enim veniam quis ipsum jowl spare ribs. + Ground round jowl salami esse meatball aute beef ribs frankfurter meatloaf aliqua do corned beef magna sint. In enim alcatra, pariatur eu filet mignon occaecat cupim salami dolor sunt velit incididunt shoulder.
+
Hodor hodor - hodor... Hodor hodor hodor - hodor. Hodor. Hodor. Hodor hodor... Hodor hodor hodor, hodor, hodor hodor. Hodor! Hodor hodor, hodor; hodor hodor, hodor. Hodor hodor. Hodor hodor HODOR! Hodor hodor hodor, hodor. Hodor hodor? Hodor hodor + HODOR! Hodor HODOR hodor, hodor hodor hodor hodor... Hodor hodor hodor. Hodor.
+
Live-edge waistcoat four dollar toast, photo booth fixie next level skateboard vexillologist. Copper mug you probably haven't heard of them pork belly af 8-bit blog hammock. Meh glossier chia meditation, brooklyn post-ironic whatever jean shorts + pabst iceland truffaut hoodie YOLO tumeric. Listicle la croix af, gluten-free man bun tumeric unicorn food truck echo park cred thundercats literally ramps. Banjo echo park vegan DIY. Vexillologist live-edge asymmetrical taiyaki, occupy hella + raclette. 90's chartreuse helvetica chia jianbing XOXO tote bag air plant freegan. Locavore vinyl subway tile authentic VHS. Hell of 8-bit locavore ennui blog venmo lomo trust fund green juice flexitarian. +
+
+ +
+ + diff --git a/HTML:CSS/js/main.js b/HTML:CSS/js/main.js new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/HTML:CSS/js/main.js @@ -0,0 +1 @@ + From 4f649a85aac2c7d6b5fdf6b2e514997d404c4dc4 Mon Sep 17 00:00:00 2001 From: Ryan Frazier Date: Tue, 8 Aug 2017 15:52:12 -0600 Subject: [PATCH 07/14] tabs done, dropdown responsive --- HTML:CSS/css/style.css | 61 +++++++++++++++++++++++++++++++++-------- HTML:CSS/index.html | 62 ++++++++++++++++++++++++++++++++++-------- HTML:CSS/js/main.js | 7 ++++- 3 files changed, 106 insertions(+), 24 deletions(-) diff --git a/HTML:CSS/css/style.css b/HTML:CSS/css/style.css index 2fb0b50..8f8151a 100644 --- a/HTML:CSS/css/style.css +++ b/HTML:CSS/css/style.css @@ -26,7 +26,7 @@ html, body { background: #2C99A4; } #input-form { - margin: auto 0; + margin: 0; } #search-button, .menu, .menu a{ @@ -128,12 +128,6 @@ button { margin: 10px 10px 10px 0; } -/*.list-holder { - display: flex; - flex-direction: column-reverse; - justify-content: center; -}*/ - .list-holder ul { padding: 0; } @@ -146,13 +140,58 @@ button { color: #2C99A5; } +.nav-link { + color: #aaa !important; +} + +.nav-link.active { + color: #2C99A5 !important; + border: none; + border-bottom: 2px solid #2C99A5 !important; +} + +.dropdown-toggle { + color: #2C99A5 !important; + display: flex; + justify-content: space-between; +} + +.dropdown { + margin-top: 25px; + padding: 0; +} + +.dropdown-toggle::after { + margin-top: 5px; +} + +.tab-pane div { + margin: auto; + padding: 0; +} + +.dropdown-menu { + width: 100%; +} + +#lang-and-certs { + margin-top: 0; +} + +.tab-pane h4, .tab-writing { + margin-top: 25px !important; +} + +.current-tab { + font-size: 18px; +} + @media (max-width: 575px) { .realtor-info, .additional-info { padding: 0; } } - @media (max-width: 575px) { - #search-text, .menu { + #search-text, .menu, .xs-hide { display: none; } } @media (max-width: 575px) { @@ -160,7 +199,7 @@ button { padding-left: 0; } } @media (max-width: 767px) { - #empty, #empty1 { + #empty, #empty1, #empty2 { display: none; } } @media (max-width: 768px) { @@ -172,7 +211,7 @@ button { font-size: 12px!important; } } @media (min-width: 576px) { - #search-button { + #search-button, .xs-show { display: none; } } @media (max-width: 768px) and (min-width: 576px) { diff --git a/HTML:CSS/index.html b/HTML:CSS/index.html index 38cf9a7..0d730f9 100644 --- a/HTML:CSS/index.html +++ b/HTML:CSS/index.html @@ -86,35 +86,73 @@

Jane Smith

-
-
+
@@ -49,11 +49,11 @@

Jane Smith

@@ -68,15 +68,15 @@

Jane Smith

  • - Visit my website + Visit my website
  • - Denver office + Denver office
  • - eNewsletter Sign Up + eNewsletter Sign Up
  • @@ -85,7 +85,11 @@

    Jane Smith

    + +
    + + +
    + + +
    + +
    diff --git a/HTML:CSS/js/main.js b/HTML:CSS/js/main.js index 1f8a182..2ecc68c 100644 --- a/HTML:CSS/js/main.js +++ b/HTML:CSS/js/main.js @@ -2,5 +2,5 @@ $('.nav').on('show.bs.tab', function (e) { let activeTab = e.target.hash.slice(1) $('.nav .active').removeClass('active') $(`.nav .${activeTab}`).addClass('active') - $(".dropdown-toggle").html(e.target.text + ' ') + $(".dropdown-toggle").html(e.target.text + ' ') }) From 95882456be249868bec0e5549ead37c2640f132a Mon Sep 17 00:00:00 2001 From: Ryan Frazier Date: Tue, 8 Aug 2017 20:08:43 -0600 Subject: [PATCH 09/14] header on mobile done --- HTML:CSS/Assets/SVGs/account.svg | 2 +- HTML:CSS/Assets/SVGs/contact1.svg | 1 + HTML:CSS/Assets/SVGs/index.html | 192 ------------------------------ HTML:CSS/css/style.css | 57 ++++++++- HTML:CSS/index.html | 66 ++++++++++ HTML:CSS/js/main.js | 6 + 6 files changed, 128 insertions(+), 196 deletions(-) create mode 100644 HTML:CSS/Assets/SVGs/contact1.svg delete mode 100644 HTML:CSS/Assets/SVGs/index.html diff --git a/HTML:CSS/Assets/SVGs/account.svg b/HTML:CSS/Assets/SVGs/account.svg index f1c41ea..3f9cbec 100755 --- a/HTML:CSS/Assets/SVGs/account.svg +++ b/HTML:CSS/Assets/SVGs/account.svg @@ -1 +1 @@ -account +account diff --git a/HTML:CSS/Assets/SVGs/contact1.svg b/HTML:CSS/Assets/SVGs/contact1.svg new file mode 100644 index 0000000..3991820 --- /dev/null +++ b/HTML:CSS/Assets/SVGs/contact1.svg @@ -0,0 +1 @@ +contact diff --git a/HTML:CSS/Assets/SVGs/index.html b/HTML:CSS/Assets/SVGs/index.html deleted file mode 100644 index 1e9dbb0..0000000 --- a/HTML:CSS/Assets/SVGs/index.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - Booj Realtor - - - - - - - - - - - - -
    -
    -
    -
    - Realtor Image -
    -
    -
    -
    -
    -

    Jane Smith

    -
    -
    -

    REALTOR®

    -
    -
    - -
    -
    - -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    -
    - - -
    - - - - - - - -
    -
    -
    -
    - Lorem ipsum dolor sit amet dui sit sapien sem auctor nec elit. Mauris libero nunc malesuada porta netus. Ultrices sit id lorem tortor elementum purus primis quis aliquet augue vestibulum. In enim nec. At tempor consectetuer. Non magna vel. Fames amet - feugiat. Tempor vel laoreet lectus ut ut mi vestibulum donec. Mauris mauris nunc donec at blandit. Sem et pede cursus quis accumsan. Diam in turpis curabitur enim porttitor. Lectus parturient ipsum. Lobortis dolor massa. Orci nibh nec hac - suspendisse non. Enim velit sed. Aliquam felis dolor. Urna pellentesque risus lacinia aliquam at et erat urna vel nullam accumsan sem. -
    -
    Proin vel dignissim urna. Curabitur sit amet nulla non metus posuere porta. Nulla magna mauris, sollicitudin eu velit at, fermentum rhoncus est. In sagittis neque non commodo pharetra. Pellentesque venenatis interdum nisi id volutpat. - Vivamus auctor mi nibh, eu dapibus velit tempus maximus. In at semper quam. Etiam vehicula maximus viverra. Proin at est a nibh egestas congue. -

    Nam consectetur lectus magna, non scelerisque elit interdum eu. Morbi ligula arcu, vestibulum nec tortor sit amet, venenatis pharetra mi. Curabitur vitae lorem scelerisque, mattis nisl in, malesuada libero. Cras vitae neque quis tellus - feugiat fringilla. Fusce vel tincidunt est. Ut vitae turpis lacinia, porta ex venenatis, imperdiet justo. Donec consequat nulla vel augue mollis gravida. -
    -
    -
    -

    LANGUAGES

    -

    Dutch, Finnish, Spanish

    -

    DESIGNATIONS

    -

    CRS, GRI, CNE

    -
    -
    - -
    -
    Bacon ipsum dolor amet hamburger porchetta culpa sunt commodo duis ut fatback tongue. Lorem qui shoulder, occaecat deserunt irure dolor fatback fugiat. Hamburger fugiat incididunt salami, sirloin bresaola enim veniam quis ipsum jowl spare ribs. - Ground round jowl salami esse meatball aute beef ribs frankfurter meatloaf aliqua do corned beef magna sint. In enim alcatra, pariatur eu filet mignon occaecat cupim salami dolor sunt velit incididunt shoulder.
    -
    Hodor hodor - hodor... Hodor hodor hodor - hodor. Hodor. Hodor. Hodor hodor... Hodor hodor hodor, hodor, hodor hodor. Hodor! Hodor hodor, hodor; hodor hodor, hodor. Hodor hodor. Hodor hodor HODOR! Hodor hodor hodor, hodor. Hodor hodor? Hodor hodor - HODOR! Hodor HODOR hodor, hodor hodor hodor hodor... Hodor hodor hodor. Hodor.
    -
    Live-edge waistcoat four dollar toast, photo booth fixie next level skateboard vexillologist. Copper mug you probably haven't heard of them pork belly af 8-bit blog hammock. Meh glossier chia meditation, brooklyn post-ironic whatever jean shorts - pabst iceland truffaut hoodie YOLO tumeric. Listicle la croix af, gluten-free man bun tumeric unicorn food truck echo park cred thundercats literally ramps. Banjo echo park vegan DIY. Vexillologist live-edge asymmetrical taiyaki, occupy hella - raclette. 90's chartreuse helvetica chia jianbing XOXO tote bag air plant freegan. Locavore vinyl subway tile authentic VHS. Hell of 8-bit locavore ennui blog venmo lomo trust fund green juice flexitarian. -
    -
    -
    - - - -
    - -
    - - - - - - - - diff --git a/HTML:CSS/css/style.css b/HTML:CSS/css/style.css index a0c4357..a73fd7e 100644 --- a/HTML:CSS/css/style.css +++ b/HTML:CSS/css/style.css @@ -48,6 +48,7 @@ html, body { display: flex; justify-content: center; width: 100%; + padding: 0; } .phone, .address { @@ -252,6 +253,52 @@ button { padding-right: 0; } +.logo-holder { + padding-left: 0; + padding-right: 0; +} + +.right-menu { + display: flex; + flex-direction: row; + justify-content: flex-end; +} + +.centerXY { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} + +.centerXY div{ + color: #5c5c5c; +} + +#header, #fluid-header { + padding: 10px; +} + +.right-menu-icons { + display: flex; + flex-direction: row; + justify-content: flex-end; +} + +.full-height { + height: 100%; + width: auto; +} + +.full-height li { + margin-left: 30px; +} + +.fa-bars { + height: 16px; + width: 16px; +} + @media (max-width: 575px) { .realtor-info, .additional-info { padding: 0; } } @@ -264,11 +311,15 @@ button { .search { padding-left: 0; } } +@media (min-width: 768px) { + #header { + display: none; } } + @media (max-width: 767px) { - #empty, #empty1, #empty2 { + #empty, #empty1, #empty2, #fluid-header { display: none; } } -@media (max-width: 768px) { +@media (max-width: 767px) { .list-unstyled { font-size: 14px!important; } } @@ -294,7 +345,7 @@ button { justify-content: center; } } -@media (max-width: 768px) and (min-width: 576px) { +@media (max-width: 767px) and (min-width: 576px) { .info-row h1 { font-size: 2rem!important; } } diff --git a/HTML:CSS/index.html b/HTML:CSS/index.html index c9887cc..d54681f 100644 --- a/HTML:CSS/index.html +++ b/HTML:CSS/index.html @@ -6,12 +6,78 @@ + +
    + +
    +
    +
    + + + + +
    +
    +
    + + + +
    + @@ -95,7 +127,7 @@ -
    +
    @@ -158,16 +190,16 @@

    Jane Smith

    @@ -246,7 +278,7 @@

    DESIGNATIONS

    -
    +