notice: use distinct icons for notice box type #17

This commit is contained in:
Sören Weber 2021-07-16 19:55:23 +02:00
parent 510cd0b99c
commit edbebe2ff3
No known key found for this signature in database
GPG key ID: 07D17FF580AE7589

View file

@ -493,7 +493,6 @@ div.notices > div.label {
div.notices > div.label:first-child:before {
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f06a";
margin-left: -.35rem;
margin-right: .35rem;
}
@ -501,6 +500,9 @@ div.notices.info {
border-top: 30px solid #6AB0DE;
background: #E7F2FA;
}
div.notices.info > div.label:first-child:before {
content: "\f05a";
}
div.notices.info > div.label:first-child:after {
content: 'Info';
}
@ -508,6 +510,9 @@ div.notices.warning {
border-top: 30px solid rgba(217, 83, 79, 0.8);
background: #FAE2E2;
}
div.notices.warning > div.label:first-child:before {
content: "\f071";
}
div.notices.warning > div.label:first-child:after {
content: 'Warning';
}
@ -515,6 +520,9 @@ div.notices.note {
border-top: 30px solid #F0B37E;
background: #FFF2DB;
}
div.notices.note > div.label:first-child:before {
content: "\f06a";
}
div.notices.note > div.label:first-child:after {
content: 'Note';
}
@ -522,6 +530,9 @@ div.notices.tip {
border-top: 30px solid rgba(92, 184, 92, 0.8);
background: #E6F9E6;
}
div.notices.tip > div.label:first-child:before {
content: "\f0eb";
}
div.notices.tip > div.label:first-child:after {
content: 'Tip';
}