changed design

This commit is contained in:
2026-04-29 23:05:44 +02:00
parent acda7e69c0
commit fe7d6221e9
7 changed files with 130 additions and 186 deletions
+70
View File
@@ -1,5 +1,75 @@
#background {
position: absolute;
left: 0;
top: 0;
background-image: url('/cherry_bird.jpeg');
background-size: cover;
background-position: center;
height: 100vh;
width: 100%;
z-index: 0;
opacity: 0.1;
pointer-events: none;
}
.site-content {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
z-index: 1;
margin-top: 120px;
height: 600px;
}
.content-block {
display: flex;
align-items: baseline;
gap: 20px;
}
.input-box {
display: flex;
gap: 20px;
}
.custom-button {
padding: 10px 20px;
background: #333;
color: rgb(225, 225, 225);
cursor: pointer;
border-radius: 6px;
border: 1px solid black;
}
.custom-button:hover {
border-color: white;
color: white;
}
.response-block {
margin-top: auto;
width: 20%;
display: flex;
flex-direction: column;
justify-content: left;
}
.image-box {
border: 1px solid black;
background: rgb(69, 69, 69);
height: 300px;
width: 500px;
margin-top: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
opacity: 0.5;
}
.image-box.active {
opacity: 1;
background: none;
border: none;
}