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

MVP #674

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

MVP #674

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
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ Follow these steps to set up and work on your project:

Once your repository is set up, practice what you learned today to style the site according to the given design. Your complete project should look similar to the desktop image. You should take the following actions, at a minimum:

- [ ] Link your CSS stylesheet in the `index.html` and implement a CSS reset
- [ ] Markup html semantically, such that it can be styled according to the given desktop image
- [x] Link your CSS stylesheet in the `index.html` and implement a CSS reset
- [x] Markup html semantically, such that it can be styled according to the given desktop image
- [ ] Color the background of items in the navigation bar and footer with the following colors:
- [ ] Plan your Visit: `#FF764E`
- [ ] Learn About the Park: `#5ED3EB`
Expand All @@ -55,7 +55,6 @@ Once your repository is set up, practice what you learned today to style the sit

**Please note that you CANNOT use flexbox on today's project - you must achieve your layout using inline-block**


### Task 3: Stretch Goals

The following goals are designed to stretch your knowledge and may require additional research beyond what was learned in class today.
Expand Down
277 changes: 277 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,277 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
:root {
font-size: 62.5%;
}
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;
}
html {
font-family: 'Roboto', sans-serif;
font-family: 'Chelsea Market', cursive;
}
body {
line-height: 1;
font-size: 16px;
}
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;
}

/* MY STYLE STARTS HERE */

.home-header {
margin-bottom: 5rem;
}

.home-header--NAV {
display: flex;
/* justify-content: space-around; */
margin: 3rem 0;
}

.home-header--NAV a {
color: #fff;
text-decoration: none;
padding: 1rem 3rem;
border-radius: 1rem;
text-align: center;
margin-left: 25rem;
font-size: 1.8rem;
}

.home-header--NAV #plan {
background-color: #ff764e;
}
.home-header--NAV #learn {
background-color: #5ed3eb;
}
.home-header--NAV #involved {
background-color: #ffcd69;
}

.main-container {
display: flex;
/* justify-content: space-around; */
/* align-items: center; */
margin-bottom: 5rem;
}

.text-content {
text-align: center;
letter-spacing: 0.2rem;
font-family: 'Roboto', sans-serif;
}

.text-content--TITLE {
font-size: 5rem;
margin-bottom: 4rem;
margin-top: 6rem;
}

.text-content p {
/* letter-spacing: 0.2rem; */
font-size: 2.5rem;
}

.text-content p:first-of-type {
margin-bottom: 4rem;
}

.main-container .img-container {
width: 40rem;
margin-right: 10rem;
}

.img-container--IMG {
width: 100%;
border-radius: 50%;
}

/* .about-section {
} */
.about-style {
background-color: #ddb9a3;
text-align: center;
padding: 1rem;
color: #fff;
width: 80%;
margin: 0 auto;
font-size: 2.5rem;
letter-spacing: 0.15rem;
}

.fire-section {
margin-bottom: 10rem;
}

.mid-section-style {
width: 60rem;
margin: 0 auto;
font-size: 2.5rem;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
}

.mid-section--img-container {
/* width: 40rem; */
height: 50rem;
}

#unique-container {
width: 40rem;
}
.mid-section--img-container img {
/* width: 100%; */
}

.reservation {
margin-bottom: 10rem;
}

.footer-section {
background-color: #f9e7dc;
}

.footer-style {
margin: 0 auto;
}

/* .footer-style .footer--img-container {
} */

.footer-style .footer--img-container img {
width: 100%;
height: 50rem;
object-fit: cover;
object-position: center top;
}

.style-links nav {
margin: 0;
padding: 4rem 0;
}

.style-links nav a {
margin-top: 0;
margin-bottom: 0;
}
Loading