BetterDiscordApp-v2/client/src/styles/partials/bdsettings/remotecard.scss

65 lines
1.2 KiB
SCSS
Raw Normal View History

.bd-remoteCard {
display: flex;
flex-direction: column;
background: rgba(0,0,0,.1);
margin-top: 10px;
padding: 10px 10px 5px 10px;
border-radius: 5px;
&:hover {
background: rgba(0,0,0,.2);
transform: scale(1.005);
box-shadow: 0px 0px 5px rgba(0,0,0,.5);
}
.bd-remoteCard-title {
color: #FFF;
font-weight: 600;
}
.bd-remoteCard-likes {
color: red;
font-size: 12px;
font-weight: 600;
}
.bd-remoteCard-infoContainer {
margin-left: 10px;
.bd-remoteCard-infoBox {
color: #b3b5b8;
font-size: 12px;
font-weight: 700;
.bd-remoteCard-info {
line-height: 14px;
}
}
}
.bd-remoteCard-thumb {
height: 100px;
width: 180px;
background: rgba(0,0,0,.1);
border-radius: 3px;
}
.bd-remoteCard-tags {
color: #828a97;
font-size: 10px;
line-height: 20px;
}
.bd-button-group {
align-self: flex-end;
justify-content: flex-end;
flex-grow: 1;
max-height: 20px;
.bd-button {
font-size: 12px;
padding: 5px 10px;
}
}
}