Spaces:
Sleeping
Sleeping
File size: 1,024 Bytes
ded29b0 |
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 51 52 53 54 55 56 |
/* Main CSS for Title Analyzer app */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.5;
color: #212529;
background-color: #f8f9fa;
padding-top: 2rem;
padding-bottom: 2rem;
}
.header {
margin-bottom: 2rem;
border-bottom: 1px solid #e5e5e5;
padding-bottom: 1rem;
}
.flash-messages {
margin-bottom: 1rem;
}
.card {
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
margin-bottom: 1.5rem;
border: none;
border-radius: 0.5rem;
}
.card-header {
background-color: #f8f9fa;
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-body {
padding: 1.5rem;
}
.btn-primary {
background-color: #007bff;
border-color: #007bff;
}
.btn-primary:hover {
background-color: #0069d9;
border-color: #0062cc;
}
.step-title {
border-bottom: 1px solid #eee;
padding-bottom: 0.5rem;
margin-bottom: 1rem;
}
.processing-steps .card-body {
min-height: 15rem;
} |