Merge branch 'main' of github.com:Kum1ta/PTME_Transcendence
This commit is contained in:
@ -116,7 +116,7 @@
|
||||
<h2>Tom, tomoron</h2>
|
||||
<p>Backend</p>
|
||||
<div class="info">
|
||||
<p>Tom led back-end development with Django, PostgreSQL, and Docker, creating a secure, scalable, and efficient backbone that seamlessly integrated with the front end.</p>
|
||||
<p>Tom led back-end development with Django, PostgreSQL, and Docker, creating a secure, scalable, and efficient backbone that seamlessly integrated with the front end, ensuring smooth and reliable functionality.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="team-member">
|
||||
@ -124,7 +124,7 @@
|
||||
<h2>Hugo, hubourge</h2>
|
||||
<p>Game</p>
|
||||
<div class="info">
|
||||
<p>Tom est spécialisé en développement backend et travaille principalement avec Node.js et MongoDB.</p>
|
||||
<p>Hugo worked on the game development, implementing various advanced features using JavaScript and the Three.js library. He integrated interactive elements and immersive 3D effects to create a rich and dynamic user experience.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -5,6 +5,7 @@
|
||||
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<link rel="apple-touch-icon" href="/static/logo.png">
|
||||
<link rel="manifest" href="/static/manifest.json">
|
||||
<title>Chat</title>
|
||||
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
||||
|
@ -29,6 +29,10 @@ http {
|
||||
alias /var/www/static/;
|
||||
}
|
||||
|
||||
location /favicon.ico {
|
||||
alias /var/www/static/favicon.ico;
|
||||
}
|
||||
|
||||
location / {
|
||||
proxy_pass http://djangoserver:8000;
|
||||
proxy_set_header Host $host;
|
||||
|
BIN
docker-compose/requirements/nginx/static/favicon.ico
Normal file
BIN
docker-compose/requirements/nginx/static/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
BIN
docker-compose/requirements/nginx/static/logo.png
Normal file
BIN
docker-compose/requirements/nginx/static/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
@ -6,7 +6,7 @@
|
||||
/* By: madegryc <madegryc@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/08/07 12:00:55 by edbernar #+# #+# */
|
||||
/* Updated: 2024/11/14 16:53:15 by madegryc ### ########.fr */
|
||||
/* Updated: 2024/11/15 14:08:22 by madegryc ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -242,6 +242,12 @@ button {
|
||||
background-color: #fff;
|
||||
margin-bottom: 20px;
|
||||
transition: background-color 0.3s ease;
|
||||
color: black;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
.login-btn:focus {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.login-btn:hover {
|
||||
@ -301,6 +307,12 @@ button {
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
transition: background-color 0.3s ease;
|
||||
color: black;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
.login-42-btn:focus {
|
||||
color: black;
|
||||
}
|
||||
|
||||
#logo-ft {
|
||||
@ -434,7 +446,7 @@ button {
|
||||
}
|
||||
|
||||
.team-member:hover .info {
|
||||
transform: translateX(-50%) translateY(25%);
|
||||
transform: translateX(-50%) translateY(55%);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user