Test-HTML / style.css
GilbertClaus's picture
Trust
0bcdffe
raw
history blame
795 Bytes
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
padding: 20px;
}
.container {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
max-width: 500px;
margin: auto;
}
h1 {
font-size: 22px;
color: #333;
}
input {
width: 80%;
padding: 8px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
background: #007bff;
color: white;
padding: 8px 15px;
border: none;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background: #0056b3;
}
#result {
margin-top: 15px;
text-align: left;
padding: 10px;
}
img {
border-radius: 5px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}