This commit is contained in:
catmpeg 2025-12-26 22:41:32 +03:00
commit 3ac480374c
3 changed files with 56 additions and 24 deletions

View file

@ -15,15 +15,15 @@ body {
font-family: 'ConsolasBold', 'consolas';
font: 14px 'ConsolasBold';
color: #fff;
background-color: #080808;
background: url('background.png') center/cover fixed no-repeat;
background-color: #181818;
/* background: url('background.png') center/cover fixed no-repeat; */
text-align: center;
}
main {
margin-top: 20px;
border-radius: 15px;
background-color: rgb(1,1,1,0.3);
background-color: rgb(1,1,1,0.2);
padding: 20px;
width: 800px;
max-width: 100%;
@ -33,7 +33,7 @@ main {
.down {
margin-top: 20px;
border-radius: 15px;
background-color: rgb(1,1,1,0.3);
background-color: rgb(1,1,1,0.2);
padding: 10px;
margin-bottom: 20px;
}
@ -44,10 +44,27 @@ a {
}
.title {
font-size: 3em;
font-weight: 400;
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
}
.blocks {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
.block {
padding: 10px 15px;
background-color: #111111;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
a:hover {
text-decoration: underline;
}
@ -79,8 +96,11 @@ label {
height: 50px;
width: 40%;
resize: none;
color: white;
background-color: rgb(29,29,29,0.1);
color: #ddd;
background: rgba(35, 35, 35, 0.85);
border: 1px solid #555;
border-radius: 5px;
padding: 5px;
}
@media (max-width: 800px) {