This commit is contained in:
2023-12-22 21:13:16 +03:00
parent e0afab1420
commit 43fe5e361e
7 changed files with 361 additions and 22 deletions

View File

@ -0,0 +1,35 @@
.container {
background: #ffffff;
color: #000000;
padding: 20px;
animation: fade-in 1s ease-in-out;
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.title {
font-size: 24px;
font-weight: bold;
}
.subtitle {
font-size: 18px;
font-weight: normal;
}
.button {
background: #000000;
color: #ffffff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
display: inline-block;
margin-top: 10px;
}