untitled-2810
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data β all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v5View latest version
Date Request π
body {
height: 100vh;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #ff9a9e, #fad0c4);
font-family: Arial, sans-serif;
overflow: hidden;
}
.container {
text-align: center;
}
h1 {
margin-bottom: 30px;
}
button {
padding: 12px 24px;
font-size: 16px;
border: none;
border-radius: 8px;
cursor: pointer;
position: absolute;
transition: all 0.3s ease;
}
#yes {
background: green;
color: white;
left: 45%;
top: 55%;
}
#no {
background: red;
color: white;
left: 55%;
top: 55%;
}
###