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.
15 lines
507 B
15 lines
507 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 */ |
|
border-left: 4px solid var(--color-primary); /* Solid border using primary color */ |
|
color: var(--color-text); /* Use theme text color for better contrast */ |
|
}
|
|
|