- Add responsive :
     - Lobby page
     - Fix bug profil/login/settings'
This commit is contained in:
Mathis Degryck
2024-10-05 23:49:39 +02:00
parent 7f5cf36eb7
commit 667d5141dc
10 changed files with 190 additions and 22 deletions

View File

@ -10,6 +10,47 @@
font-style: normal;
}
#topBarSettings {
margin-block: 25px;
padding: 0;
padding-inline: 50px;
display: flex;
gap: 2rem;
align-items: center;
position: relative;
inset-inline: 0;
top: 0;
z-index: 500;
}
#topBarSettings h1 {
padding: 0;
padding-top: 4px;
font-size: 35px;
color: white;
font-family: 'Poppins';
font-style: italic;
font-weight: bold;
}
#topBarSettings #loginButton {
font-size: 20px;
background-color: white;
height: 40px;
width: 130px;
color: black;
text-align: center;
line-height: 40px;
margin-left: auto;
transition: background-color 0.3s ease;
}
#topBarSettings #loginButton:hover {
background-color: transparent;
color: white;
cursor: pointer;
}
.popup-background-delete {
display: none;
position: fixed;
@ -154,11 +195,13 @@
@media (max-width: 768px) {
#settingsBody {
align-items: normal;
}
#settingsBody .container-settings {
display: flex;
flex-direction: column;
width: 100%;
margin-top: 350px;
margin-inline: 30px;
}
@ -166,4 +209,12 @@
#settingsBody .right-section {
margin-bottom: 20px;
}
.delete-btn {
margin-bottom: 30px;
}
#topBar{
position: relative;
}
}