ajout quiz

This commit is contained in:
Your Name
2025-12-05 01:34:26 +01:00
parent 4b3fbc4957
commit befaefe3c6
9 changed files with 448 additions and 0 deletions

71
Quiz/test.css Normal file
View File

@@ -0,0 +1,71 @@
body {
font-family: sans-serif;
background-color: #0f0f20;
text-align: center;
}
h1 {
color: #ff0000;
}
img.logo {
background-color: #0f0f20;
}
p {
color: rgb(0, 221, 255);
}
input::checkmark {
color: #000;
}
button {
border: 0;
line-height: 2.0;
padding: 0 10px;
font-size: 1rem;
text-align: center;
color: plum;
text-shadow: 1px 1px 1px black;
border-radius: 10px;
background-color: #0f0f20;
background-image: linear-gradient(
to top left,
rgb(0 0 0 / 0.2),
rgb(0 0 0 / 0.2) 30%,
transparent
);
box-shadow:
inset 2px 2px 3px rgba(255, 255, 255, 0.6),
inset -2px -2px 3px rgb(0 0 0 / 0.6);
}
button:hover {
background-color: rgb(70, 70, 255);
}
button:active {
box-shadow:
inset -2px -2px 3px rgb(255 255 255 / 0.6),
inset 2px 2px 3px rgb(0 0 0 / 0.6);
}
.test {
background-color: #202040;
width: 400px;
/*height: 300px;*/
margin: auto;
border-radius: 25px;
display: none;
}
.ans {
color: #a0a0ff;
margin: 25px;
font-size: 20px;
}