You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
612 B
20 lines
612 B
.notice { |
|
padding: 10px; /* Padding around the content */ |
|
border-radius: 5px; /* Rounded corners */ |
|
margin: 10px 0; /* Margin above and below the notice */ |
|
} |
|
|
|
.notice p { |
|
margin: 0; /* Remove default paragraph margin */ |
|
} |
|
|
|
.notice.info { |
|
background-color: var(--color-bg-light); /* Light version of --color-primary */ |
|
color: var(--color-text); /* Use theme text color for better contrast */ |
|
} |
|
|
|
.notice.error { |
|
background-color: color-mix(in srgb, var(--color-bg-light) 85%, #c0392b); |
|
color: var(--color-text); |
|
border: 1px solid color-mix(in srgb, #c0392b 35%, transparent); |
|
}
|
|
|