17 lines
487 B
CSS
17 lines
487 B
CSS
/* Special-school / PRU / AP context note: soft, informational (teal), not a
|
|||
|
|
warning. Shared by both detail views so the styling can't drift. */
|
||
|
|
.note {
|
||
|
|
background: var(--bg-secondary, #f3ede4);
|
||
|
|
border-left: 4px solid var(--accent-teal, #2d7d7d);
|
||
|
|
border-radius: 0 6px 6px 0;
|
||
|
|
padding: 0.7rem 1rem;
|
||
|
|
margin: 0 0 1rem;
|
||
|
|
font-size: 0.9rem;
|
||
|
|
line-height: 1.5;
|
||
|
|
color: var(--text-secondary, #5c564d);
|
||
|
|
max-width: 72ch;
|
||
|
|
}
|
||
|
|
.note strong {
|
||
|
|
color: var(--text-primary, #1a1612);
|
||
|
|
}
|