From 4547cdfab2680b04f9d51924a3c9ca66ba8c78e0 Mon Sep 17 00:00:00 2001 From: Terry Edwards Date: Sat, 25 Apr 2020 14:59:42 -0400 Subject: [PATCH] fun buss finish --- .DS_Store | Bin 6148 -> 8196 bytes .vscode/settings.json | 3 + css/index.css | 331 +++++++++++++++++++++++++++++++++++++++++- index.html | 22 ++- less/home-page.less | 79 +++++++++- less/index.less | 9 ++ less/mixins.less | 23 ++- less/navigation.less | 27 +++- less/variables.less | 6 +- 9 files changed, 491 insertions(+), 9 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.DS_Store b/.DS_Store index faa2d1e8033fd02b072cf79d3c910bfa4d4dc364..a8fa036a2530869a9174b5ad5c725a5d99f16636 100644 GIT binary patch delta 567 zcmZoMXmOBWU|?W$DortDU;r^WfEYvza8E20o2aKKEDDkb@)`1zlXCKtKvJ6pImB2t zD{%BPFJ|Z9nApIg4pPL-kjzlbQ0$q5PzV&Y24ao>V8FnznTN%WQ3_4PN`#8Z8(8Hg zd$AsqK~=&ij!*(LgpEy=v7U<|lOc~Gg&~!pf - + +
+ +

Welcome To Fun Bus!

+

Traveling expedition modern, clean webdesign blogger clean website them website modern. Design pretty design, travelblogger adventure WordPress wanderlust theme blogger website expedition theme travelblogger. Adventure fun traveler pretty design website expedition.

+
+
@@ -51,17 +65,17 @@

Pick Your Destination

Fun In The Sun

Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.

-
Sign Me Up!
+

Mountain Excursion

Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.

-
Sign Me Up!
+

Island Getaway

Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.

-
Sign Me Up!
+
diff --git a/less/home-page.less b/less/home-page.less index 5528d8a7a5..49c35a4cef 100644 --- a/less/home-page.less +++ b/less/home-page.less @@ -1,5 +1,25 @@ +header{padding-bottom: 10px;; + border-bottom: 2px dashed @navigation-border; +} + +.top-content{ + margin-left: 310px; + margin-right: 310px; + border-bottom: 2px dashed @navigation-border; + + + @media @mobile{ + .margin(); + + h2{ + margin-top: 20px; + } + } +} + .home { + .content-section { margin: 30px 0; display: flex; @@ -20,6 +40,18 @@ img { border-radius: 10px; } + } + @media @mobile{ + flex-direction: column; + .flexbox(center,center); + .margin(); + + .text-content{ + width:100%; + } + + + } } @@ -36,6 +68,17 @@ padding-right: 1%; padding-left: 0; } + + @media @mobile{ + display: flex; + flex-direction: column-reverse; + .margin(); + + .text-content{ + width:100%; + } + + } } .content-destination { @@ -45,6 +88,12 @@ img { border-radius: 10px; } + + @media @mobile{ + width:100%; + padding-left: 20px; + padding-right:20px; + } } .content-pick { @@ -54,8 +103,36 @@ justify-content: space-between; .destination { - width: 30%; + width: 50%; margin-bottom: 30px; } + + .btn{ + button{ + width:200px; + height:30px; + font-size: 18px; + .button(teal,white,10px); + } + } + @media @mobile{ + flex-direction: column; + align-items:center; + .margin(); + + .destination{ + width:100%; + padding-left: 50px; + padding-right:50px; + } + + .btn{ + button{ + width:350px; + .button(darkturquoise,white,10px); + } + } + } + } }// home \ No newline at end of file diff --git a/less/index.less b/less/index.less index c113ca2c46..a32db75a2a 100644 --- a/less/index.less +++ b/less/index.less @@ -1 +1,10 @@ // Follow the order in the readme +@import "variables"; +@import "mixins"; + +@import "reset"; +@import "global"; + +@import "navigation"; +@import "footer"; +@import "home-page"; \ No newline at end of file diff --git a/less/mixins.less b/less/mixins.less index 2d5c603558..9ec8243a8a 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -1 +1,22 @@ -// Mixins in here \ No newline at end of file +// Mixins in here + .flexbox(@j,@a){ + display: flex; + justify-content: @j; + align-items: @a; + } + + .direction(@dir){ + display: flex; + flex-direction: @dir; + } + + .button(@bc,@c,@br){ + background-color: @bc; + color: @c; + border-radius: @br; + } + + .margin{ + margin-left:20px; + margin-right:20px; + } \ No newline at end of file diff --git a/less/navigation.less b/less/navigation.less index f89120a0f1..8dc03c098a 100644 --- a/less/navigation.less +++ b/less/navigation.less @@ -1 +1,26 @@ -// Navigation Styles here \ No newline at end of file +// Navigation Styles here +.navbar{ + .flexbox(space-between,baseline); + border-bottom: 2px dashed @navigation-border; + padding-left: 310px; + padding-right: 310px; + nav{ + a{ + margin-right: 30px; + margin-left: 10px; + text-decoration: none; + color:black;font-size: 1.4rem; + } + } + + @media @mobile{ + padding-left: 20px; + padding-right: 20px; + flex-direction: column; + align-items: center; + + // nav{ + // @direction(row); + // } + } +} \ No newline at end of file diff --git a/less/variables.less b/less/variables.less index 916eb0b7e0..83bb528186 100644 --- a/less/variables.less +++ b/less/variables.less @@ -11,4 +11,8 @@ @silver: #C0C0C0; @shark: #212529; @eastern-blue: #17A2B8; -@sandy-beach: #FFEBCD; \ No newline at end of file +@sandy-beach: #FFEBCD; + + +// mobile file +@mobile: ~"(max-width: 500px)"; \ No newline at end of file