forked from justinmajetich/AirBnB_clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b30ea9a
commit 21703d7
Showing
4 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>AirBnB clone</title> | ||
|
||
<link rel="shortcut icon" href="images/icon.ico" > | ||
|
||
<link rel="stylesheet" href="styles/2-common.css"/> | ||
<link rel="stylesheet" href="styles/2-header.css"/> | ||
<link rel="stylesheet" href="styles/2-footer.css"/> | ||
</head> | ||
<body> | ||
<header> | ||
</header> | ||
|
||
<footer> | ||
<p>Holberton School</p> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
body { | ||
margin:0px; | ||
padding:0px; | ||
|
||
color: #484848; | ||
font-size: 14px; | ||
font-family: Circular,"Helvetica Neue",Helvetica,Arial,sans-serif; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
footer { | ||
position: fixed; | ||
bottom: 0; | ||
background-color: white; | ||
height: 60px; | ||
width: 100%; | ||
text-align: center; | ||
line-height: 30px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
header { | ||
background-color: white; | ||
height: 70px; | ||
width: 100%; | ||
|
||
border-bottom: 1px solid #CCCCCC; | ||
} | ||
|
||
header.header_logo { | ||
background-image: url("images/logo.png") | ||
padding-left: 20px; | ||
} |