- Added websocket
This commit is contained in:
edbernar
2024-08-07 15:31:58 +02:00
parent 855ccd1af7
commit 65e5a0ac6e
15 changed files with 169 additions and 24 deletions

View File

@ -5,7 +5,8 @@
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Chat</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' href='style/style.css'>
<link rel='stylesheet' type='text/css' href='style/home.css'>
<link rel='stylesheet' type='text/css' href='style/liveChat.css'>
<link rel='stylesheet' type='text/css' href='style/notification.css'>
<script type="module" src='main.js'></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
@ -15,6 +16,12 @@
<body>
<div id="divNotification">
</div>
<div id="topBar">
<p>PTME</p>
<div id="loginButton">
<p>Login</p>
</div>
</div>
<div id="chatButton">
<p>CHAT</p>
</div>

View File

@ -0,0 +1,49 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* home.css :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: edbernar <edbernar@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/08/07 12:00:55 by edbernar #+# #+# */
/* Updated: 2024/08/07 12:10:04 by edbernar ### ########.fr */
/* */
/* ************************************************************************** */
* {
margin: 0;
padding: 0;
}
body {
border: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: #616161;
user-select: none;
}
#topBar {
margin: 0;
padding: 0;
width: 100%;
display: flex;
flex-direction: row;
}
#topBar h1 {
margin: 0;
padding: 0;
font-size: 40px;
color: white;
font-family: 'Poppins';
}
#topBar p {
margin: 0;
padding: 0;
font-size: 20px;
color: white;
font-family: 'Poppins';
}

View File

@ -1,23 +1,15 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* style.css :+: :+: :+: */
/* liveChat.css :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
/* By: edbernar <edbernar@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/07/30 13:53:39 by edbernar #+# #+# */
/* Updated: 2024/08/04 23:44:06 by edbernar ### ########.fr */
/* Updated: 2024/08/07 12:02:11 by edbernar ### ########.fr */
/* */
/* ************************************************************************** */
body {
border: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: #616161;
user-select: none;
}
#chatButton {
position: absolute;
@ -236,9 +228,9 @@ body {
}
@supports not selector(::-webkit-scrollbar) {
#messageListChatHome {
scrollbar-color: var(--sb-thumb-color)
var(--sb-track-color);
}
#messageListChatHome {
scrollbar-color: var(--sb-thumb-color)
var(--sb-track-color);
}
}