MediaWiki:Common.css: Difference between revisions

From NeuroWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 8: Line 8:
     border: 1px solid transparent;
     border: 1px solid transparent;
     border-radius: 0.25rem;
     border-radius: 0.25rem;
}
.w-25 {
    width: 25%!important;
}
.w-50 {
    width: 50%!important;
}
.w-75 {
    width: 75%!important;
}
}



Revision as of 19:47, 17 January 2024

/* CSS placed here will be applied to all skins */


.note {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.w-25 {
    width: 25%!important;
}

.w-50 {
    width: 50%!important;
}

.w-75 {
    width: 75%!important;
}


.note-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;

    /* other styles remain the same */
}

.note-reminder {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.note-warn {
color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    /* other styles remain the same */
}

.note-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}