Add files via upload

This commit is contained in:
Aldess 2023-11-24 07:43:27 +01:00 committed by GitHub
commit 56ad8bce7d
2 changed files with 221 additions and 149 deletions

View file

@ -7,10 +7,18 @@
<title>Collaborative Pixel Art</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<body onload="
document.getElementById('intro').classList.add('fadeout')
setTimeout(() => {
document.getElementById('intro').style.display = 'none'
}, 800);
">
<div id="intro" class="intro">
<h2>Collaborative Pixel Art</h2>
</div>
<div class="header">
<h1>Collaborative Pixel Art</h1>
<div id="pixel-count"></div> <!-- Element to display pixel count -->
<div id="pixel-count">En cours de chargement...</div> <!-- Element to display pixel count -->
</div>
<div class="container">
<div id="canvas">
@ -18,14 +26,18 @@
</div>
<div class="color-selector">
<div class="color-option" style="background-color: #000000;"></div>
<div class="color-option" style="background-color: #5454ff;"></div>
<div class="color-option" style="background-color: #00bbff;"></div>
<div class="color-option" style="background-color: #2e7d44;"></div>
<div class="color-option" style="background-color: #5ee834;"></div>
<div class="color-option" style="background-color: #ffe600;"></div>
<div class="color-option" style="background-color: #ff9900;"></div>
<div class="color-option" style="background-color: #FF0000;"></div>
<div class="color-option" style="background-color: #00FF00;"></div>
<div class="color-option" style="background-color: #0000FF;"></div>
<div class="color-option" style="background-color: #FFFF00;"></div>
<div class="color-option" style="background-color: #FF00FF;"></div>
<div class="color-option" style="background-color: #00FFFF;"></div>
<div class="color-option" style="background-color: #ff89ff;"></div>
<div class="color-option" style="background-color: #a04cf9;"></div>
<div class="color-option" style="background-color: #808080;"></div>
<div class="color-option" style="background-color: #FFFFFF;"></div>
<div class="color-option" style="background-color: #000000;"></div>
</div>
</div>

View file

@ -1,5 +1,5 @@
/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* General styling for the body and page layout */
body {
display: flex;
@ -8,23 +8,82 @@ body {
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif; /* Set font family for the entire page */
background-color: #f0f0f0; /* Light gray background color */
font-family: 'Poppins', sans-serif; /* Set font family for the entire page */
background-color: var(--bg); /* Light gray background color */
}
.intro {
position: absolute;
z-index: 2;
background-color: #000;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.fadeout {
animation-name: fadeout;
animation-duration: 1s;
}
@keyframes fadeout {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateX(-50%);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.intro h2{
font-size: 35px;
font-weight: 600;
text-align: center;
color: #fff;
animation-name: fadeIn;
animation-duration: .8s;
}
/* Styling for the header section */
.header {
margin-bottom: 20px; /* Add spacing at the bottom of the header */
color: #333; /* Dark text color */
font-size: 24px; /* Larger font size for the header */
font-weight: bold; /* Make the header text bold */
text-align: center; /* Center-align the text within the header */
margin-bottom: 20px;
}
:root {
--bg: #f0f0f0;
--text-color: #333;
--text-color2: #666;
}
/* thème sombre */
@media (prefers-color-scheme: dark){
:root {
--bg: #171717;
--text-color: #fff;
--text-color2: #eee;
}
.navbar .time, i, .brandname, .matiere {
filter: drop-shadow(1px 1px 2px rgb(0 0 0 / 0.4));
}
}
h1 {
color: var(--text-color);
font-size: 30px;
font-weight: 600;
text-align: center;
}
/* Styling for the pixel count display */
#pixel-count {
font-size: 16px;
color: #666;
color: var(--text-color2);
text-align: center;
margin-top: 10px; /* Add spacing above the pixel count */
}
@ -35,8 +94,8 @@ body {
flex-wrap: wrap; /* Allow the container to wrap on smaller screens */
justify-content: center; /* Center the content horizontally */
align-items: center; /* Center the content vertically */
background-color: #fff; /* White background color */
border-radius: 8px; /* Rounded corners for the container */
background-color: #fffffff3; /* White background color */
border-radius: 15px; /* Rounded corners for the container */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
padding: 20px; /* Add padding inside the container */
max-width: 800px; /* Set a maximum width for the container */
@ -112,3 +171,4 @@ body {
font-size: 14px;
}
}