Skip to content
Merged
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ Follow these steps for completing your project.
* [ ] 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


initial commit 1:14pm

367 changes: 366 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,366 @@
/* 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;
margin: 0 auto;
}
@media (max-width: 500px) {
.container {
padding-right: 20px;
padding-left: 20px;
}
}
.navholder {
max-width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
border-bottom: 2px solid #C0C0C0;
border-style: dashed;
}
.topnav {
padding-top: 30px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: baseline;
width: 800px;
}
@media (max-width: 500px) {
.topnav {
display: flex;
align-items: center;
flex-direction: column;
}
}
.clicknav {
width: 310px;
justify-content: space-around;
font-size: 1.6rem;
display: flex;
flex-direction: row;
}
@media (max-width: 500px) {
.clicknav {
padding-left: 0px;
margin: 0px;
display: flex;
flex-direction: row;
width: 100%;
justify-content: center;
justify-content: space-around;
padding-bottom: 10px;
padding-top: 0px;
}
}
.sitename {
padding-bottom: 20px;
}
@media (max-width: 500px) {
.sitename {
display: flex;
flex-direction: row;
justify-content: center;
}
}
.footer {
width: 100%;
border-top: 2px dashed silver;
background: #FFEBCD;
}
.footer p {
text-align: center;
color: #212529;
font-size: 1.6rem;
padding: 20px;
}
.home .content-section {
margin: 30px 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
@media (max-width: 500px) {
.home .content-section {
display: flex;
flex-direction: row;
width: 100%;
justify-content: center;
}
}
.home .content-section .text-content {
width: 48%;
padding-right: 1%;
}
@media (max-width: 500px) {
.home .content-section .text-content {
width: 100%;
align-items: center;
}
}
.home .content-section .img-content {
width: 48%;
padding-left: 1%;
}
@media (max-width: 500px) {
.home .content-section .img-content {
width: 100%;
display: flex;
justify-content: center;
}
}
.home .content-section .img-content img {
border-radius: 10px;
}
@media (max-width: 500px) {
.home .content-section .img-content img {
width: 100%;
padding-left: 0px;
padding-right: 0px;
margin-right: 0px;
margin-left: 0px;
}
}
.home .inverse-content {
padding-bottom: 30px;
border-bottom: 2px dashed #C0C0C0;
}
@media (max-width: 500px) {
.home .inverse-content {
display: flex;
flex-direction: column-reverse;
}
}
.home .inverse-content .text-content {
padding-left: 1%;
padding-right: 0;
}
.home .inverse-content .img-content {
padding-right: 1%;
padding-left: 0;
}
.home .content-destination {
width: 75%;
margin: 0 auto 30px;
}
@media (max-width: 500px) {
.home .content-destination {
margin: 0 auto;
width: 100%;
padding-bottom: 30px;
}
}
.home .content-destination img {
border-radius: 10px;
}
.home .content-pick {
padding-top: 30px;
border-top: 2px dashed #C0C0C0;
display: flex;
justify-content: space-between;
}
@media (max-width: 500px) {
.home .content-pick {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
}
.home .content-pick .destination {
width: 30%;
margin-bottom: 30px;
}
@media (max-width: 500px) {
.home .content-pick .destination {
width: 75%;
}
}
.introcontent {
padding-top: 20px;
border-bottom: 2px solid #C0C0C0;
border-style: dashed;
}
.introcontent .topa {
padding-bottom: 20px;
}
.btn {
border-radius: 10px;
color: white;
font-size: 22px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
background: #008080;
max-width: 200px;
}
@media (max-width: 500px) {
.btn {
max-width: 100%;
background: #17A2B8;
}
}
Loading