refomap_adm / static /styles.css
Persano's picture
Create static/styles.css
d35d570 verified
raw
history blame
476 Bytes
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
color: #333;
padding: 40px;
}
.container {
max-width: 800px;
margin: auto;
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
button {
background-color: #007bff;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}