25 lines
732 B
CSS
25 lines
732 B
CSS
.vc-badges-warning {
|
|
font-size: 16px !important;
|
|
background-color: rgb(240 71 71 / 10%) !important;
|
|
color: rgb(240 71 71) !important;
|
|
border: 1px solid rgb(240 71 71 / 60%) !important;
|
|
border-radius: 5px !important;
|
|
font-weight: 500;
|
|
padding: 6px 10px;
|
|
text-align: center;
|
|
margin-top: 10px;
|
|
font-style: bold;
|
|
}
|
|
|
|
.vc-badges-notice {
|
|
font-size: 16px !important;
|
|
background-color: var(--info-warning-background) !important;
|
|
color: var(--info-warning-text) !important;
|
|
border: 1px solid var(--info-warning-foreground) !important;
|
|
border-radius: 5px !important;
|
|
font-weight: 500;
|
|
padding: 6px 10px;
|
|
text-align: center;
|
|
margin-top: 10px;
|
|
font-style: bold;
|
|
}
|