Update: 2026-05-13

This commit is contained in:
2026-05-13 23:53:40 +09:00
parent e6ec2f2800
commit ad84271f80
5 changed files with 194 additions and 28 deletions

View File

@@ -80,6 +80,70 @@
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }
/* Buttons */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--space-2);
padding: var(--space-4) var(--space-8);
border-radius: var(--radius-full);
font-size: 1rem;
font-weight: 600;
font-family: 'Outfit', sans-serif;
cursor: pointer;
border: none;
transition: all var(--transition-base);
min-height: 56px;
min-width: 160px;
}
.btn-primary {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: white;
box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}
.btn-primary:active {
transform: translateY(0);
}
.btn-secondary {
background: var(--bg-card);
color: var(--text-primary);
box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
background: var(--bg-secondary);
}
.btn-ghost {
background: transparent;
color: var(--text-secondary);
min-width: auto;
padding: var(--space-3) var(--space-4);
}
.btn-icon {
width: 56px;
height: 56px;
padding: 0;
border-radius: var(--radius-lg);
}
.btn svg {
width: 20px;
height: 20px;
stroke: currentColor;
fill: none;
}
/* Header */
.header {
display: flex;