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

HW5-Sutong Jiang #11

Open
wants to merge 1 commit 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
3 changes: 3 additions & 0 deletions assignment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ Use [Figma](https://www.figma.com) to recreate the design from one of the list o
- Don't worry about replicating logos and other images. But try to replicate colors and components (dropdowns, search inputs, buttons) as closely as you can
- See how far you can get in 3 hours and then feel free to stop, or keep going if you're having fun
- Using Figma, share your project with Nathan and Jeff ([email protected])

### HW Address
https://www.figma.com/file/BRQ52AFPwU9g9sPYeN456TUf/Jiang_globalForestWatch?node-id=0%3A1
Binary file added assignment/pic/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 14 additions & 4 deletions lab/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,20 @@ body {
font-family: helvetica, arial, sans-serif;
}

.header {
position: relative;
top: 0;
left: 0;
right: 0;
height: 40px;
z-index: 2;
background-color: #000
}

.map {
background-color: #eee;
position: absolute;
left: 400px;
position: relative;
left: 300px;
right: 0;
bottom: 0;
top: 0;
Expand All @@ -23,9 +33,9 @@ body {
overflow-y: auto; /* This line allows the sidebar to scroll when there is
a lot of content in it */
background-color: #ccc;
position: absolute;
position: relative;
left: 0;
width: 400px;
width: 300px;
bottom: 0;
top: 0;
}