pix360core/src/pix360core/static/css/style.css
Kumi f01858fb1e
feat(style): ensure full-width buttons in card blocks
Adjusted button styles within card blocks to span the full width and tightened the margin at the top to just 1px. This enhancement improves consistency across UI components and enhances the visual appeal of card elements, making actions more obvious and accessible to users.
2024-04-13 08:20:30 +02:00

68 lines
729 B
CSS

body {
background-color: #f8f9fa;
font-family: "Arial", sans-serif;
}
.container {
max-width: 800px;
}
h1,
h2 {
text-align: center;
color: #333;
}
h2 a {
text-decoration: none;
color: #007bff;
}
h2 a:hover {
text-decoration: underline;
}
form {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.form-group label {
font-weight: bold;
}
.form-control {
margin-bottom: 10px;
}
.btn {
margin-right: 10px;
}
#options {
display: none;
}
#cards {
margin-top: 20px;
}
.modal-dialog {
max-width: 90%;
}
.modal-content {
background-color: #fff;
}
#panorama {
height: 500px;
}
.card-block .btn {
width: 100%;
margin-top: 1px;
}