BetterDiscordApp-v2/client/src/styles/partials/bdsettings/settings-schemes.scss

63 lines
1.2 KiB
SCSS
Raw Normal View History

2018-08-15 04:03:56 +02:00
.bd-settingsSchemes {
2018-02-14 18:55:10 +01:00
margin-bottom: 15px;
2018-08-15 11:42:43 +02:00
border-bottom: 1px solid rgba(114, 118, 126, .3);
2018-02-14 18:55:10 +01:00
2018-08-15 04:03:56 +02:00
.bd-settingsSchemesContainer {
2018-02-14 18:55:10 +01:00
margin-right: -15px;
}
}
2018-08-15 04:03:56 +02:00
.bd-settingsScheme {
2018-02-14 18:55:10 +01:00
display: inline-block;
width: calc(33.3% - 15px);
margin: 0 15px 15px 0;
cursor: pointer;
2018-02-14 19:03:10 +01:00
vertical-align: top;
2018-02-14 18:55:10 +01:00
2018-08-15 04:03:56 +02:00
.bd-settingsModal & {
2018-02-14 18:55:10 +01:00
width: calc(50% - 15px);
2018-08-15 04:03:56 +02:00
.bd-settingsSchemeIcon {
2018-02-14 18:55:10 +01:00
height: 120px;
}
}
2018-08-15 04:03:56 +02:00
.bd-settingsSchemeIcon {
2018-02-14 18:55:10 +01:00
box-sizing: border-box;
width: 100%;
height: 120px;
border: 2px solid $coldimwhite;
border-radius: 3px;
2018-08-15 11:42:43 +02:00
transition: border-color .2s ease;
2018-02-14 18:55:10 +01:00
margin-bottom: 15px;
background: center / cover no-repeat #2f3136;
}
2018-08-15 04:03:56 +02:00
.bd-settingsSchemeName {
2018-02-14 18:55:10 +01:00
font-weight: 500;
color: #f6f6f7;
}
2018-08-15 04:03:56 +02:00
.bd-settingsSchemeHint {
2018-02-14 19:03:10 +01:00
flex: 1 1 auto;
color: #72767d;
font-size: 14px;
font-weight: 500;
margin-top: 10px;
}
2018-02-20 01:01:46 +01:00
&:hover {
2018-08-15 04:03:56 +02:00
.bd-settingsSchemeIcon {
2018-02-20 01:01:46 +01:00
border-color: lighten($coldimwhite, 20%);
}
}
2018-02-14 18:55:10 +01:00
&.bd-active {
cursor: default;
2018-08-15 04:03:56 +02:00
.bd-settingsSchemeIcon {
2018-08-15 09:45:10 +02:00
border-color: $colbdgreen;
2018-02-14 18:55:10 +01:00
}
}
}