Spaces:
Running
Running
File size: 2,523 Bytes
7601c3d 22f54b5 7601c3d 22f54b5 | 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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | .climb-form h2 {
margin: 0 0 1rem;
font-size: 1.25rem;
}
.form-group {
margin-bottom: 1rem;
}
.form-group label {
display: block;
margin-bottom: 0.3rem;
font-size: 0.875rem;
font-weight: 600;
color: var(--color-text-muted);
}
.form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="text"],
.form-group input[type="range"],
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.55rem 0.75rem;
border: 1px solid var(--color-border);
border-radius: var(--radius);
font-size: 0.95rem;
background: var(--color-card);
color: var(--color-text);
font-family: inherit;
}
.form-group textarea {
resize: vertical;
}
.form-group input[type="range"] {
padding: 0;
accent-color: var(--color-primary);
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.16);
}
.form-group select:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.16);
}
.rpe-panel {
border: 1px solid var(--color-border);
border-radius: var(--radius);
background: var(--color-bg-soft);
padding: 0.75rem;
margin-top: 0.5rem;
}
.rpe-labels {
display: flex;
justify-content: space-between;
font-size: 0.75rem;
color: var(--color-text-muted);
}
.rpe-value {
display: block;
font-size: 1rem;
font-weight: 700;
color: var(--color-primary);
margin-bottom: 0.5rem;
}
.rpe-criteria-grid {
display: grid;
grid-template-columns: auto 1fr;
gap: 0.3rem 0.7rem;
font-size: 0.8rem;
}
.rpe-criteria-grid span:nth-child(odd) {
color: var(--color-text-muted);
}
.injury-input-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
}
.injury-input-item label {
margin-bottom: 0.25rem;
font-size: 0.8rem;
}
.injury-item-title {
display: block;
margin-bottom: 0.35rem;
font-size: 0.8rem;
font-weight: 600;
}
.injury-phase-row {
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.3rem;
}
.injury-phase-row label {
margin: 0;
font-size: 0.75rem;
}
.btn-primary {
width: 100%;
padding: 0.65rem 1rem;
border: none;
border-radius: var(--radius);
background: var(--color-primary);
color: #fff;
font-size: 0.95rem;
font-weight: 700;
cursor: pointer;
}
.btn-primary:hover {
background: #92400e;
}
@media (max-width: 768px) {
.injury-input-grid {
grid-template-columns: 1fr;
}
}
|