Files
mixtape/zero.Backoffice.UI/dist/zero/channels.css
T
2021-11-19 16:11:12 +01:00

52 lines
1.1 KiB
CSS

a.channels-item {
display: flex;
flex-direction: column;
justify-content: flex-start;
background: var(--color-box);
border-radius: var(--radius);
padding: var(--padding-m);
text-align: left;
color: var(--color-text);
font-size: var(--font-size);
line-height: 1.5;
box-shadow: var(--shadow-short);
}
.channels-item-image {
max-width: 60px;
max-height: 34px;
margin-right: -2px;
}
.channels-item-name {
display: flex;
justify-content: space-between;
min-height: 40px;
align-items: center;
margin-top: -10px;
margin-bottom: 15px;
}
.channels-item-line {
color: var(--color-text-dim);
display: flex;
justify-content: space-between;
min-height: 23px;
}
.channels-item-line + .channels-item-line {
margin-top: 5px;
}
.channels-item-status {
display: inline-block;
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
background: var(--color-box-nested);
color: var(--color-text);
height: 22px;
line-height: 22px;
padding: 0 10px;
border-radius: 16px;
letter-spacing: 0.5px;
margin-right: -2px;
}
.channels-item-status + .channels-item-status {
margin-left: 5px;
}