MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 30: | Line 30: | ||
.note-warn { | .note-warn { | ||
background-color: # | color: #856404; | ||
border-color: # | background-color: #fff3cd; | ||
border-color: #ffeeba; | |||
/* other styles remain the same */ | /* other styles remain the same */ | ||
} | } | ||
Revision as of 19:24, 17 January 2024
/* CSS placed here will be applied to all skins */
.note {
background-position: left 7px top 50%;
padding: 0.5em 0.5em 0.5em 40px;
margin: 0.5em 0;
overflow: hidden;
background-color: #f8f9fa;
background-repeat: no-repeat;
border: 1px solid #ddd;
border-radius: 0.25rem;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.note-info {
color: #0c5460;
background-color: #d1ecf1;
border-color: #bee5eb;
/* other styles remain the same */
}
.note-reminder {
background-color: #FFF9EA; /* light yellow */
border-color: #fc3; /* darker yellow */
/* other styles remain the same */
}
.note-warn {
color: #856404;
background-color: #fff3cd;
border-color: #ffeeba;
/* other styles remain the same */
}
.note-error {
background-color: #F8D7DA; /* light red */
border-color: #f44336; /* darker red */
/* other styles remain the same */
}