You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
928 B
64 lines
928 B
.small-card {
|
|
display: flex;
|
|
width: 700px;
|
|
padding: 0;
|
|
background: #f5f5f5;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
margin: 15px 0;
|
|
|
|
.small-card-body {
|
|
flex: 1;
|
|
|
|
h3 {
|
|
margin-top: 0;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
}
|
|
|
|
.small-card-cover {
|
|
flex: none;
|
|
text-align: left;
|
|
padding: 0;
|
|
width: 30%;
|
|
|
|
img {
|
|
width: 100%;
|
|
height:100%;
|
|
}
|
|
}
|
|
|
|
.small-card-caption {
|
|
color: #666;
|
|
text-align: right;
|
|
span {
|
|
display: inline-block;
|
|
background: #ddd;
|
|
padding: 3px 12px;
|
|
border-bottom-left-radius: 8px;
|
|
}
|
|
}
|
|
|
|
.small-card-status {
|
|
.status {
|
|
span {
|
|
font-size: 200%;
|
|
vertical-align: sub;
|
|
}
|
|
|
|
&.on {
|
|
color: #090;
|
|
}
|
|
&.off {
|
|
color: #aaa;
|
|
}
|
|
&.play {
|
|
color: #f90;
|
|
}
|
|
&.unknown {
|
|
color: #c00;
|
|
}
|
|
}
|
|
}
|
|
}
|