72 lines
1.1 KiB
CSS
72 lines
1.1 KiB
CSS
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;
|
|
}
|
|
|