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

WK5 Li Zhuang #6

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
Binary file added assignment/Li_Zhuang_WK5.pdf
Binary file not shown.
4 changes: 4 additions & 0 deletions assignment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@ 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])


## Homework Submission
- [Figma Link](https://www.figma.com/file/hBJC8PVSZeBe7gkJF6fpN6Zo/Li_Zhuang_WK5?node-id=0%3A1)
35 changes: 35 additions & 0 deletions lab/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,24 @@ body {
font-family: helvetica, arial, sans-serif;
}


.header{
position: absolute;
font-size: 20px;
height: 40px;
font-family: monospace;
padding: 10px;
color: #ddd;
background-color: black;
z-index: 2;
top: 0px;
left: 0px;
right: 0px;
}




.map {
background-color: #eee;
position: absolute;
Expand All @@ -29,3 +47,20 @@ body {
bottom: 0;
top: 0;
}

.card {
padding: 20px;
margin: 5px;
border: 1px #000 solid;
position: relative;
top: 40px;
}

.card_active{
background-color: lightblue;
padding: 20px;
margin: 5px;
border: 1px #000 solid;
position: relative;
top: 40px;
}
12 changes: 11 additions & 1 deletion lab/part1.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,19 @@
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="header">Header</div>
<div class="header"> THIS IS MY FOOD </div>
<!-- Sidebar -->
<div class="sidebar">Sidebar</div>
<div class="card_active">
<h2> #1 sushi roll </h2>
<p> I dont like salmon </p>
</div>
<div class="card">
<h2> #2 chocolate </h2>
</div>
<div class="card">
<h2> #3 windsurfing </h2>
</div>
<!-- Map -->
<div id="map" class="map">Map</div>
<!-- Javascript Imports -->
Expand Down