diff --git a/AboutUs.html b/AboutUs.html
new file mode 100644
index 0000000..a99ae97
--- /dev/null
+++ b/AboutUs.html
@@ -0,0 +1,8 @@
+
+
+
+ About Us
+
+
+
+
\ No newline at end of file
diff --git a/blank-profile-pic.png b/blank-profile-pic.png
new file mode 100644
index 0000000..b398aa2
Binary files /dev/null and b/blank-profile-pic.png differ
diff --git a/filters.html b/filters.html
new file mode 100644
index 0000000..11cb0d8
--- /dev/null
+++ b/filters.html
@@ -0,0 +1,10 @@
+
+
+
+ Profile
+
+
+
+ Configure filters
+
+
\ No newline at end of file
diff --git a/grey.jpg b/grey.jpg
new file mode 100644
index 0000000..a4877ab
Binary files /dev/null and b/grey.jpg differ
diff --git a/home.css b/home.css
new file mode 100644
index 0000000..fe240e2
--- /dev/null
+++ b/home.css
@@ -0,0 +1,104 @@
+html,
+body {
+ margin: 0;
+ padding: 0;
+ font-family: sans-serif;
+ height: 100%;
+ overflow: hidden;
+
+}
+
+body {
+ background-image: url(img/blue.jpg);
+ background-repeat: no-repeat;
+ background-size: cover;
+ background-position: center;
+}
+
+.container {
+ display: flex;
+ flex-direction: column;
+}
+
+/* box 1 */
+.box1 {
+ height: 10%;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 10px 20px;
+ color: darkgray;
+}
+.box1 li, .box1 a {
+ text-decoration: none;
+ list-style: none;
+ display: inline;
+ color: white;
+}
+.box1 li {
+ padding: 0 1rem;
+ font-size: 1.3rem;
+}
+.logo { /* Want to get logo to be centered below doesnt work*/
+ width: 20%;
+ align-self: center;
+}
+.box1 .back {
+ cursor: pointer;
+ background-color: transparent;
+ border: none;
+ font-size: 3rem;
+ text-decoration: none;
+ color: white;
+}
+
+/* box2 */
+.box2 {
+ height: 80%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 2rem 5rem 0 5rem;
+}
+.holder{
+ max-width: 75%;
+ padding: 2rem;
+ border-radius: 1rem;
+ background-color: rgba(0,0,0,0.4);
+ border: 1px solid black;
+ text-align: center;
+
+}
+.holder img {
+ max-width: 90%;
+ border-radius: 1rem;
+ border: 1px solid black;
+}
+
+/* box3 */
+
+.box3 {
+ height: 10%;
+ margin: 0;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+}
+
+.box3 .bottom li {
+ bottom:2rem;
+ cursor: pointer;
+ list-style: none;
+ display: inline;
+ text-decoration: none;
+}
+.box3 .bottom li a {
+ color: white;
+
+}
+.box3 .bottom li button {
+ background: transparent;
+ border: 0;
+ font-size: 3rem;
+ color: white;
+}
diff --git a/home.html b/home.html
new file mode 100644
index 0000000..3489920
--- /dev/null
+++ b/home.html
@@ -0,0 +1,45 @@
+
+
+
+ Home
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/img/blue.jpg b/img/blue.jpg
new file mode 100644
index 0000000..99d95cd
Binary files /dev/null and b/img/blue.jpg differ
diff --git a/img/home-back.jpg b/img/home-back.jpg
new file mode 100644
index 0000000..81124c2
Binary files /dev/null and b/img/home-back.jpg differ
diff --git a/img/hotel-ex.jpg b/img/hotel-ex.jpg
new file mode 100644
index 0000000..58ccb88
Binary files /dev/null and b/img/hotel-ex.jpg differ
diff --git a/img/nature-background.jpg b/img/nature-background.jpg
new file mode 100644
index 0000000..84121dc
Binary files /dev/null and b/img/nature-background.jpg differ
diff --git a/img/window-nature.jpg b/img/window-nature.jpg
new file mode 100644
index 0000000..3ec23bb
Binary files /dev/null and b/img/window-nature.jpg differ
diff --git a/index.css b/index.css
index 533d4d6..8f106f3 100644
--- a/index.css
+++ b/index.css
@@ -1,36 +1,156 @@
html,
body {
+ margin: 0px;
+ padding: 0px;
font-family: sans-serif;
+ height: 100%;
+ overflow: hidden;
+ background-color: #ead2ac;
+}
+
+* {
+ box-sizing: border-box;
+}
+
+.container {
+ /* padding: 70px 20px 20px 250px; */
+ width: 100%;
+ min-height: 100%;
+ display: flex;
+ align-items: flex-start;
+ justify-content: flex-start;
+}
+
+/* header */
+img {
+ max-width: 35%;
+ margin-left: 35%;
color: white;
- background-color: #121212;
- text-align: center;
+}
+h1 {
+ max-width: 50%;
+ max-height: 15%;
+ margin-left: 35%;
+ align-items: center;
+ color: white;
+}
+
+/* sidebar */
+/* .wrapper {
+ display: flex;
+ position: relative;
+}
+.sidebar {
+ width: 200px;
+ height: 100%;
+ background: #e6b89c;
+ color: white;
+ padding: 30px 0;
+ position: fixed;
+} */
+
+.navbar {
+ height: 100vh;
+ width: 12rem;
display: flex;
flex-direction: column;
- align-items: center;
- justify-content: center;
+ justify-content: flex-start;
+ background: #e6b89c;
+ color: white;
+ padding: 30px 0;
+}
+
+.navbar h1,
+.navbar ul,
+.navbar ul li {
+ width: 100%;
+}
+
+.navbar ul {
+ list-style: none;
+}
+
+.navbar h2 {
+ text-transform: uppercase;
+ text-align: center;
+ margin-bottom: 30px;
+ letter-spacing: 3px;
+}
+.navbar ul li {
+ text-align: left;
+ padding: 15px;
+ padding-left: 45px;
+ border-top: 2px solid #ead2ac;
+ letter-spacing: 3px;
+}
+.nav-links a {
+ color: white;
+ text-decoration: none;
+}
+
+.main-container {
+ width: calc(100vw - 12rem);
+ height: 100vh;
+ overflow-x: hidden;
+ overflow-y: overlay;
+}
+
+/* footer*/
+.footer {
+ display: flex;
+ justify-content: space-evenly;
+ background: #4281a4;
+ color: lightgray;
+ height: 200px;
+ position: relative;
+ bottom: 0px;
+ padding: 18px;
+}
+
+.footer a {
+ text-decoration: none;
+ color: white;
+}
+
+.footer .column {
+ width: 30%;
height: 100%;
}
-img {
- margin-bottom: 2rem;
- animation: bounce 2s;
- animation-iteration-count: infinite;
+/* first section of footer */
+.about-us {
+ /* height: 175px;
+ width: 33%; */
}
+.about-us h2 {
+ /* text-decoration: none; */
+}
+.about-txt {
+ padding: 10px 0;
+}
+
+/* second section of footer */
-.app-name {
- color: #fe3c72;
+.footer .relevant-links .links {
+ padding: 10px 20px;
}
-@keyframes bounce {
- 0%,
- 40% {
- transform: translateY(0rem);
- }
- 50% {
- transform: translateY(-0.5rem);
- }
- 60%,
- 100% {
- transform: translateY(0rem);
- }
+/* third section of footer */
+.contact-list {
+ padding: 10px;
}
+/* footer end*/
+/* ///index end/// */
+
+/* ---login page--- */
+#login-page {
+ margin: 0;
+ padding: 0;
+ background: url(seashore.jpg);
+ background-repeat: no-repeat;
+ background-size: contain cover;
+ background-position: center;
+}
+/* ///login page end/// */
+
+/* profile page */
diff --git a/index.html b/index.html
index a12445d..7abb048 100644
--- a/index.html
+++ b/index.html
@@ -3,9 +3,90 @@
Lodger
+
-
- Lodger starter template
+
+
+
+
+
+
+
+
Lodger Match with your perfect lodging
+
---Insert Something---
+
+
+
+
+