87 lines
1.8 KiB
CSS
87 lines
1.8 KiB
CSS
body {
|
|
background-color: #F9FAFB;
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
color: #374151;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(135deg, #FFFFFF, #F9FAFB);
|
|
padding: 4rem 2rem;
|
|
border-bottom: 1px solid #E5E7EB;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
color: #111827;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
color: #6B7280;
|
|
}
|
|
|
|
.action-card {
|
|
border: 1px solid #E5E7EB;
|
|
border-radius: 0.75rem;
|
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
cursor: pointer;
|
|
background-color: #ffffff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.action-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.action-card .icon {
|
|
width: 3rem;
|
|
height: 3rem;
|
|
stroke-width: 1.5;
|
|
color: #3B82F6;
|
|
margin: 1.5rem auto;
|
|
}
|
|
|
|
.action-card .card-body {
|
|
padding: 1.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.action-card .card-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.5rem;
|
|
color: #111827;
|
|
}
|
|
|
|
.action-card .card-text {
|
|
color: #6B7280;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #3B82F6;
|
|
border-color: #3B82F6;
|
|
font-weight: 600;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 0.5rem;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #2563EB;
|
|
border-color: #2563EB;
|
|
}
|
|
|
|
|
|
.toast-container {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
z-index: 1055;
|
|
} |