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.
14 lines
419 B
14 lines
419 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: rgba(95, 115, 85, 0.15); /* Light version of --color-primary */ |
|
color: var(--color-text); /* Use theme text color for better contrast */ |
|
}
|
|
|