99 lines
1.9 KiB
CSS
99 lines
1.9 KiB
CSS
|
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
background-color: #F4F4F4;
|
|
color: #264653;
|
|
}
|
|
|
|
.header {
|
|
background-image: linear-gradient(to right, rgba(42, 157, 143, 0.8), rgba(38, 70, 83, 0.8)), url('https://picsum.photos/seed/droneview/1600/400');
|
|
background-size: cover;
|
|
background-position: center;
|
|
color: white;
|
|
padding: 4rem 2rem;
|
|
margin-bottom: 2rem;
|
|
border-radius: 0 0 1rem 1rem;
|
|
}
|
|
|
|
.header h1 {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #2A9D8F;
|
|
border-color: #2A9D8F;
|
|
border-radius: 0.5rem;
|
|
padding: 0.75rem 1.5rem;
|
|
font-weight: 600;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #248a7d;
|
|
border-color: #248a7d;
|
|
}
|
|
|
|
.btn-secondary {
|
|
background-color: #E9C46A;
|
|
border-color: #E9C46A;
|
|
color: #264653;
|
|
border-radius: 0.5rem;
|
|
padding: 0.75rem 1.5rem;
|
|
font-weight: 600;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background-color: #d4b35f;
|
|
border-color: #d4b35f;
|
|
}
|
|
|
|
|
|
.mission-table {
|
|
background-color: #FFFFFF;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.mission-table th {
|
|
border-bottom: 2px solid #F4F4F4;
|
|
}
|
|
|
|
.mission-table tbody tr:hover {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.status-badge {
|
|
padding: 0.35em 0.65em;
|
|
font-size: .75em;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
color: #fff;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
vertical-align: baseline;
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
.status-completed {
|
|
background-color: #2A9D8F;
|
|
}
|
|
|
|
.status-pending {
|
|
background-color: #E9C46A;
|
|
color: #264653;
|
|
}
|
|
|
|
.status-in-progress {
|
|
background-color: #F4A261;
|
|
}
|
|
|
|
.footer {
|
|
padding: 2rem 0;
|
|
margin-top: 2rem;
|
|
font-size: 0.9rem;
|
|
color: #6c757d;
|
|
}
|