Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Follow these steps for completing your project.
## Stretch Goals:
* [ ] Create an animation mixin using parametric mixins
* [ ] Introduce a form with inputs allowing users to select a vacation package and a submit button at the bottom of the page. Introduce inputs for name, email, phone number, and an area for them to leave special instructions.
* [ ] Style the site to look good at all sizes, not just desktop and phone
* [ ] Style the site to look good at all sizes, not just desktop and phone...



1 change: 1 addition & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>ABOUT</h1>
1 change: 1 addition & 0 deletions blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>BLOG</h1>
1 change: 1 addition & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h2>CONTACT</h2>
318 changes: 317 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,317 @@
/* LESS needs to be processed */
/* 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;
}
* {
box-sizing: border-box;
}
html {
font-size: 62.5%;
}
html,
body {
font-family: 'Roboto', sans-serif;
}
h1,
h2,
h3,
h4,
h5 {
font-family: 'Indie Flower', cursive;
}
h1 {
font-size: 4rem;
}
h2 {
font-size: 3.2rem;
padding-bottom: 10px;
}
h4 {
font-size: 2.5rem;
padding-bottom: 10px;
}
p {
line-height: 1.5;
font-size: 1.6rem;
padding-bottom: 10px;
}
img {
max-width: 100%;
height: auto;
}
.container {
max-width: 800px;
width: 100%;
margin: 0 auto;
}
.menu {
text-decoration: none;
color: #212529;
font-size: 1.5rem;
padding: 20px;
}
@media (max-width: 500px) {
.main-header {
margin: 0px auto;
}
}
@media (max-width: 500px) {
nav {
display: flex;
justify-content: center;
height: 30px;
}
}
.btn a {
background: #008B8B;
color: #FFFFFF;
display: flex;
justify-content: center;
text-decoration: none;
width: 200px;
height: 45px;
border-radius: 1.5rem;
align-items: center;
font-size: 2rem;
}
@media (max-width: 500px) {
.btn a {
width: 100%;
margin: 0px auto;
}
}
.footer {
width: 100%;
border-top: 2px dashed silver;
background: #FFEBCD;
}
.footer p {
text-align: center;
color: #212529;
font-size: 1.6rem;
padding: 20px;
}
.containers {
width: 68%;
box-sizing: border-box;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: baseline;
margin: 0px auto;
padding: 30px 20px 30px 0px;
}
@media (max-width: 500px) {
.containers {
display: flex;
flex-direction: column;
}
}
.home {
width: 100%;
border-top: 2px dashed #C0C0C0;
}
.home .content-section {
margin: 30px 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.home .content-section .text-content {
width: 48%;
padding-right: 1%;
}
@media (max-width: 500px) {
.home .content-section .text-content {
width: 90%;
align-items: center;
padding-left: 10px;
padding-top: 30px;
padding-bottom: 20px;
margin: 0px auto;
}
}
.home .content-section .img-content {
width: 48%;
padding-left: 1%;
}
@media (max-width: 500px) {
.home .content-section .img-content {
width: 100%;
margin: 0px 50px;
}
}
.home .content-section .img-content img {
border-radius: 10px;
}
.inverse-content {
padding-bottom: 30px;
border-bottom: 2px dashed #C0C0C0;
}
.inverse-content .text-content {
padding-left: 1%;
padding-right: 0;
}
.inverse-content .img-content {
padding-right: 1%;
padding-left: 0;
}
.content-destination {
width: 75%;
margin: 0 auto 30px;
}
@media (max-width: 500px) {
.content-destination {
width: 95%;
}
}
.content-destination img {
border-radius: 10px;
}
.content-pick {
padding-top: 30px;
border-top: 2px dashed #C0C0C0;
display: flex;
justify-content: space-between;
}
@media (max-width: 500px) {
.content-pick {
display: flex;
flex-direction: column;
align-items: center;
padding: 40px;
}
}
.content-pick .destination {
width: 30%;
margin-bottom: 30px;
}
@media (max-width: 500px) {
.content-pick .destination {
width: 90%;
}
}
24 changes: 20 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,26 @@
</head>

<body>

<div class="container-head">
<header>
<div class="containers">
<h1 class="main-header">Fun Bus</h1>
<nav>
<a href="home.html" class="menu">Home</a>
<a href="about.html" class="menu">About Us</a>
<a href="blog.html" class="menu">Blog</a>
<a href="contact.html" class="menu">Contact</a>
</nav>
</div>
</header>
</div>



<div class="container home">
<div class="img-content">
<img src="./img/fun-bus.jpg" class="bus">
</div>

<section class="content-section">
<div class="text-content">
Expand Down Expand Up @@ -51,17 +67,17 @@ <h2>Pick Your Destination</h2>
<div class="destination">
<h4>Fun In The Sun</h4>
<p>Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.</p>
<div class="btn">Sign Me Up!</div>
<div class="btn"><a href="sign.html" class="sign">Sign Me Up!</a></div>
</div>
<div class="destination">
<h4>Mountain Excursion</h4>
<p>Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.</p>
<div class="btn">Sign Me Up!</div>
<div class="btn"><a href="sign.html" class="sign">Sign Me Up!</a></div>
</div>
<div class="destination">
<h4>Island Getaway</h4>
<p>Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.</p>
<div class="btn">Sign Me Up!</div>
<div class="btn"><a href="sign.html" class="sign">Sign Me Up!</a></div>
</div>
</section>
</div><!-- container -->
Expand Down
1 change: 1 addition & 0 deletions less/contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>CONTACT</h1>
Loading