Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eric rice #1149

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
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
358 changes: 357 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,357 @@
/* 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;
}
@media (max-width: 500px) {
img {
width: 96%;
}
}
.container {
max-width: 800px;
width: 100%;
margin: 0 auto;
}
@media (max-width: 500px) {
.container {
max-width: 500px;
width: 100%;
margin: 0 auto;
}
}
.navContainer {
border-bottom: 2px dashed #C0C0C0;
display: flex;
justify-content: center;
}
.navContainer .navTop {
width: 800px;
display: flex;
justify-content: space-between;
align-items: baseline;
margin: 25px 0px 0px 0px;
padding-bottom: 25px;
}
@media (max-width: 500px) {
.navContainer .navTop {
flex-direction: column;
align-items: center;
margin: 3% 0 0 0;
padding-bottom: 2%;
}
}
.navContainer .navTop h1 {
width: fit-content;
}
.navContainer .navTop nav {
width: 50%;
display: flex;
justify-content: space-around;
}
@media (max-width: 500px) {
.navContainer .navTop nav {
width: 100%;
display: flex;
justify-content: space-around;
padding-top: 3%;
}
}
.navContainer .navTop nav a {
color: #212529;
font-size: 17.5px;
text-decoration: none;
}
.footer {
width: 100%;
border-top: 2px dashed silver;
background: #FFEBCD;
}
.footer p {
text-align: center;
color: #212529;
font-size: 1.6rem;
padding: 20px;
}
.home .headerInfo {
border-bottom: 2px dashed #C0C0C0;
padding-bottom: 10px;
display: flex;
flex-direction: column;
}
.home .headerInfo img {
margin-bottom: 10px;
}
.home .headerInfo h1 {
margin: 10px 0px;
}
@media (max-width: 500px) {
.home {
align-items: center;
margin: 0 auto;
}
}
.content-section {
margin: 30px 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.content-section .text-content {
width: 48%;
padding-right: 1%;
}
.content-section .img-content {
width: 48%;
padding-left: 1%;
}
.content-section .img-content img {
border-radius: 10px;
}
@media (max-width: 500px) {
.content-section {
flex-direction: column;
justify-content: flex-start;
align-items: center;
width: 100%;
}
.content-section .text-content {
padding-right: 1%;
width: 96%;
}
.content-section .img-content {
width: 100%;
padding-left: 0%;
}
.content-section .img-content img {
color: red;
}
}
.inverse-content {
padding-bottom: 30px;
border-bottom: 2px dashed #C0C0C0;
}
@media (max-width: 500px) {
.inverse-content {
flex-direction: column-reverse;
}
}
.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;
}
.content-destination img {
border-radius: 10px;
}
@media (max-width: 500px) {
.content-destination {
width: 100%;
margin: 0 auto 30px auto;
}
.content-destination img {
border-radius: 10px;
}
}
.content-pick {
padding-top: 30px;
border-top: 2px dashed #C0C0C0;
display: flex;
justify-content: space-between;
}
.content-pick .destination {
width: 30%;
margin-bottom: 30px;
}
.content-pick .destination .btn {
width: 80%;
color: white;
border-radius: 15px;
font-size: 20px;
background-color: #17A2B8;
text-align: center;
padding: 12px 20px;
}
@media (max-width: 500px) {
.content-pick {
display: flex;
flex-direction: column;
align-items: center;
}
.content-pick .destination {
width: 75%;
display: flex;
flex-direction: column;
}
.content-pick .destination .btn {
width: auto;
}
}
Loading