clientSideBadges/style.css

69 lines
1.3 KiB
CSS
Raw Permalink Normal View History

2025-01-11 19:35:55 -05:00
.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;
}
2025-02-03 14:29:43 -05:00
.vc-badges-settings {
display: flex;
gap: 5px;
flex-direction: row;
}
.vc-badges-container {
position: relative;
transition: 0.15s;
flex: 0 1 auto;
}
.vc-badges-container img {
width: 25px;
height: 25px;
cursor: pointer;
}
.vc-badges-disabled {
opacity: 0.5;
scale: 0.95;
}
.vc-badges-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 12px;
}
.vc-badges-username {
font-size: 22px;
color: white;
margin-right: 5px;
}
.vc-badges-grid {
display: flex;
flex-wrap: wrap;
gap: 8px;
max-width: 100%;
}