Spaces:
Runtime error
Runtime error
File size: 864 Bytes
e3b1606 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
/* styles.css */
body{
background-image: url('./image/imgage.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.container {
width: 50%;
margin: 0 auto;
padding: 20px;
text-align: center;
}
h1 {
font-family: Arial, sans-serif;
color: #333;
}
input[type="file"] {
display: none;
}
.file-label {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
}
.detect-button {
margin-top: 20px;
background-color: #28a745;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
border: none;
cursor: pointer;
font-weight: bold;
}
.detect-button:hover {
background-color: #218838;
}
|