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

Removed the image #692

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 0 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,6 @@ <h3>
We handle everything, from finding the ideal travel buddy to
selecting your perfect hotel, flight, and destination.
</h3>
<img src="/img/cloud.png" class="moving-cloud-1 cloud" />
<img src="/img/cloud.png" class="moving-cloud-2 cloud" />
</header>
</section>
<section id="benefits">
Expand Down
41 changes: 39 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,60 @@
}
.forum_1
{
display: flex;
flex-direction: column;
align-items: center;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}

.forum_1 h1{
font-size: 4rem;
margin: 20px;
padding: 18px;
background-color: white;
box-shadow: 6px 6px 15px rgb(192, 190, 190);
}

.hi
{
background: #35424a;
display: flex;
flex-direction: row;
justify-content: center;
max-width: 80vw;;
background: #576771;
color: #ffffff;
padding: 10px 0;
padding: 50px;
text-align: center;
margin: 20px 0px 60px;
}

nav ul {
display: flex;
flex-direction: row;
width: 100%;
justify-content: space-evenly;
align-items: center;
list-style-type: none;
padding: 0;
}

.hi ul li a{
background-color: #fff;
color: blue;
font-size: 2.2rem;
font-weight: 600;
padding: 15px;
}

.hi ul li a:hover{
background-color: rgb(14, 14, 136);
color: white;
box-shadow: 4px 4px 14px whitesmoke;
}

nav ul li {
display: inline;
margin: 0 10px;
Expand Down