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: Dhruvi Kothari #16

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/Wireframe.fig
Binary file not shown.
Binary file added assignment/Wireframe.pdf
Binary file not shown.
Binary file added assignment/Wireframe.zip
Binary file not shown.
37 changes: 35 additions & 2 deletions lab/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,46 @@ body {
font-family: helvetica, arial, sans-serif;
}

.header {
color: #ccc;
position: absolute;
min-width: 220px;
line-height: 60px;
height: 60px;
overflow: none;
top: 0px;
width: 100%;
z-index: 3000;
text-align: left;
}

.selection-panel {
position: absolute;
top: 70px;
right: 10px;
z-index: 4000;
}

.about {
color: #ccc;
line-height: 60px;
display: block;
position: fixed;
top: 0px;
right: 0px;
padding: 0px 20px 0px 20px;
cursor: pointer;
font-size: 13px;
z-index: 9000;
}

.map {
background-color: #eee;
position: absolute;
left: 400px;
right: 0;
bottom: 0;
top: 0;
top: 70px;
}

.sidebar {
Expand All @@ -27,5 +60,5 @@ body {
left: 0;
width: 400px;
bottom: 0;
top: 0;
top: 70px;
}
28 changes: 25 additions & 3 deletions lab/part1.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,35 @@
<head>
<!-- CSS Imports -->
<link rel="stylesheet" href="css/style.css" />
//can link the goofle fonts so that ur special fonts are visible
</head>

<body>
<div class="header">Header</div>
<div class = "selection-panel" style="visibility:visible;">
Selection-Panel
</div>

<div class="header">
Header
</div>

<div class = "About" >
About
</div>

<a href = "//urbica.co/bikes/?l=ru&from=afisha" target="_blank" title="На весь экран">
<div id= "fullscreen"></div>
</a>
<!-- Sidebar -->
<div class="sidebar">Sidebar</div>
<div class="sidebar">
Sidebar
</div>

<!-- Map -->
<div id="map" class="map">Map</div>
<div id="map" class="map">
Map
</div>

<!-- Javascript Imports -->
</body>
</html>