diff --git a/site/interface/site/style/home.css b/site/interface/site/style/home.css index 0460d24..47827ce 100644 --- a/site/interface/site/style/home.css +++ b/site/interface/site/style/home.css @@ -3,10 +3,10 @@ /* ::: :::::::: */ /* home.css :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: madegryc +#+ +:+ +#+ */ +/* By: marvin +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/08/07 12:00:55 by edbernar #+# #+# */ -/* Updated: 2024/08/14 18:55:27 by madegryc ### ########.fr */ +/* Updated: 2024/08/17 23:27:37 by marvin ### ########.fr */ /* */ /* ************************************************************************** */ @@ -234,7 +234,7 @@ body { bottom: 0; left: 50%; transform: translateX(-50%) translateY(10px); - background-color: rgba(0, 0, 0); + background-color: #020202; padding: 10px; width: 100%; opacity: 0; diff --git a/site/lobby/index.html b/site/lobby/index.html new file mode 100644 index 0000000..0634e20 --- /dev/null +++ b/site/lobby/index.html @@ -0,0 +1,36 @@ + + + + + + Lobby + + + + + + + + +
+
+ + +
+
+
+
+
+

Multiplayer local

+
+
+
+
+ +
+
+ +
+
+
+ \ No newline at end of file diff --git a/site/lobby/style.css b/site/lobby/style.css new file mode 100644 index 0000000..a8659fb --- /dev/null +++ b/site/lobby/style.css @@ -0,0 +1,121 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* style.css :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: marvin +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2024/08/17 22:12:26 by marvin #+# #+# */ +/* Updated: 2024/08/17 22:12:26 by marvin ### ########.fr */ +/* */ +/* ************************************************************************** */ + +* { + margin: 0; + padding: 0; + font-family: "Poppins", sans-serif; + font-weight: 500; + font-style: normal; +} + +body { + border: 0; + padding: 0; + width: 100%; + height: 100%; + background-color: #020202; + user-select: none; +} + +.main{ + padding-top: 80px; + padding-inline: 150px; + display: flex; + flex-direction: row; + gap: 2.6rem; +} + +.skin-select{ + /* padding-block: 25px; */ + width: 40%; +} + +#bar{ + margin: 15px; + width: 250px; + height: 250px; + border: 5px solid white; +} + +#goal{ + margin: 15px; + width: 250px; + height: 250px; + border: 5px solid white; +} + +#topBar { + margin-block: 25px; + padding: 0; + padding-inline: 50px; + display: flex; + background-color: #020202; + gap: 2rem; + align-items: center; + justify-content: center; + inset-inline: 0; + top: 0; +} + +.game-mode { + display: flex; + justify-content: flex-start; +} + +.mode-card { + background-color: #d3d3d3; + color: #000; + padding: 20px; + width: 300px; + height: 550px; + display: flex; + justify-content: center; + font-size: 1.2em; + transition: transform 0.3s ease; +} + +.mode-card:hover { + transform: scale(1.05); +} + +.search-container { + display: flex; + align-items: center; + width: 40%; +} + +.search-input { + width: 100%; + padding: 10px; + border: 2px solid #ccc; + font-size: 16px; + outline: none; +} + +.search-input:focus { + border-color: white; +} + +.search-button { + padding: 10px 20px; + border: 2px solid white; + background-color: #272727; + color: white; + cursor: pointer; + font-size: 16px; +} + +.search-button:hover { + background-color: #202020; + border-color: #c4c4c4; +} \ No newline at end of file diff --git a/websocket-server/Class/__pycache__/User.cpython-310.pyc b/websocket-server/Class/__pycache__/User.cpython-310.pyc new file mode 100644 index 0000000..1471fe9 Binary files /dev/null and b/websocket-server/Class/__pycache__/User.cpython-310.pyc differ diff --git a/websocket-server/typeRequets/__pycache__/createAccount.cpython-310.pyc b/websocket-server/typeRequets/__pycache__/createAccount.cpython-310.pyc new file mode 100644 index 0000000..9011074 Binary files /dev/null and b/websocket-server/typeRequets/__pycache__/createAccount.cpython-310.pyc differ diff --git a/websocket-server/typeRequets/__pycache__/getPrivateListMessage.cpython-310.pyc b/websocket-server/typeRequets/__pycache__/getPrivateListMessage.cpython-310.pyc new file mode 100644 index 0000000..fc74938 Binary files /dev/null and b/websocket-server/typeRequets/__pycache__/getPrivateListMessage.cpython-310.pyc differ diff --git a/websocket-server/typeRequets/__pycache__/getPrivateListUser.cpython-310.pyc b/websocket-server/typeRequets/__pycache__/getPrivateListUser.cpython-310.pyc new file mode 100644 index 0000000..e228c12 Binary files /dev/null and b/websocket-server/typeRequets/__pycache__/getPrivateListUser.cpython-310.pyc differ diff --git a/websocket-server/typeRequets/__pycache__/login.cpython-310.pyc b/websocket-server/typeRequets/__pycache__/login.cpython-310.pyc new file mode 100644 index 0000000..3edd420 Binary files /dev/null and b/websocket-server/typeRequets/__pycache__/login.cpython-310.pyc differ diff --git a/websocket-server/typeRequets/__pycache__/sendPrivateMessage.cpython-310.pyc b/websocket-server/typeRequets/__pycache__/sendPrivateMessage.cpython-310.pyc new file mode 100644 index 0000000..e41df37 Binary files /dev/null and b/websocket-server/typeRequets/__pycache__/sendPrivateMessage.cpython-310.pyc differ diff --git a/websocket-server/typeRequets/login42/__pycache__/login42.cpython-310.pyc b/websocket-server/typeRequets/login42/__pycache__/login42.cpython-310.pyc new file mode 100644 index 0000000..5658e69 Binary files /dev/null and b/websocket-server/typeRequets/login42/__pycache__/login42.cpython-310.pyc differ