Skip to content

Commit

Permalink
Fixing the Tavel Forum
Browse files Browse the repository at this point in the history
  • Loading branch information
Sudhanshu248 committed Oct 15, 2024
1 parent 133aae7 commit 595ca33
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ <h1 id="logo"><a href="#home">BuddyTrail</a></h1>
localStorage.setItem('theme', 'light');
darkelem.forEach((elem) =>{
elem.style.color = 'gray';
})
})
h1dark.forEach((darkbtn) =>{
darkbtn.style.color='#0057B3'
})
Expand Down
44 changes: 41 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,61 @@
}
.forum_1
{
display: flex;
flex-direction: column;
align-items: center;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
background-color: rgb(203, 229, 252);
}

.forum_1 h1{
font-size: 4.3rem;
margin: 20px;
padding: 18px;
color: rgb(1, 60, 124);
border-radius: 8px;
}

.hi
{
background: #35424a;
display: flex;
flex-direction: row;
justify-content: center;
max-width: 80vw;;
color: #ffffff;
padding: 10px 0;
padding: 50px;
text-align: center;
margin: 20px 0px 60px;
border-radius: 8px;
}
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;
border-radius: 7px;
box-shadow: 0 3px 13px rgba(0, 0, 0, 0.35);
}

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

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

0 comments on commit 595ca33

Please sign in to comment.