- add button (same as login in home page) in lobby page with menu
This commit is contained in:
Kum1ta
2024-09-17 22:47:52 +02:00
parent 9491d795bf
commit 965b27426e
5 changed files with 86 additions and 6 deletions

View File

@ -3,10 +3,10 @@
/* ::: :::::::: */
/* home.css :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: marvin <marvin@student.42.fr> +#+ +:+ +#+ */
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/08/07 12:00:55 by edbernar #+# #+# */
/* Updated: 2024/09/17 14:20:28 by marvin ### ########.fr */
/* Updated: 2024/09/17 22:34:12 by edbernar ### ########.fr */
/* */
/* ************************************************************************** */

View File

@ -304,4 +304,23 @@ body {
transform: translateX(-20%);
opacity: 0;
}
}
}
#topBarLobby #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;
}
#topBarLobby #loginButton:hover {
background-color: transparent;
color: white;
cursor: pointer;
}