Here is a snipped, that addresses Martinâs suggestion:
Callout with use tag: calloutidea
[data-rem-container-tags~="calloutidea"] {
background-color: var(--callout-background-color, #fdea80);
padding: 15px 20px;
border-radius: 5px;
}
/* text formatting*/
[data-rem-container-tags~="calloutidea"] .rem-text {
position: relative;
left: 20px;
font-size: initial; /* change font-size; e.g., large, x-large*/
}
/* new rem bullet icon*/
[data-rem-container-tags~="calloutidea"] .rem-bullet__container ::before {
content: "đĄ";
visibility: visible;
position: relative;
font-size: large; /* change symbol size here */
bottom: 7px;
}
[data-rem-container-tags~="calloutidea"] .rem-bullet__container{
visibility: hidden;
}
Callout with use tag: calloutwarning
[data-rem-container-tags~="calloutwarning"] {
background-color: var(--callout-background-color, rgb(254, 247, 247));
padding: 15px 20px;
border-radius: 5px;
}
/* text formatting */
[data-rem-container-tags~="calloutwarning"] .rem-text {
position: relative;
left: 20px;
font-size: initial; /*change font-size; e.g., large, x-large */
}
/* rem bullet icon*/
[data-rem-container-tags~="calloutwarning"] .rem-bullet__container ::before {
content: "đ¨";
font-size: large; /* change symbol size here */
visibility: visible;
position: relative;
bottom: 7px;
}
/* hide old rem bullet*/
[data-rem-container-tags~="calloutwarning"] .rem-bullet__container{
visibility: hidden;
}