BetterDiscordApp-v2/client/src/styles/partials/sidebarview/settingswrap.scss

128 lines
3.4 KiB
SCSS
Raw Normal View History

2018-08-15 04:03:56 +02:00
.bd-sidebarRegion {
2018-02-17 02:39:43 +01:00
.bd-settingswrap {
display: flex;
height: 100%;
-webkit-box-flex: 1;
flex: 1;
min-height: 1px;
box-sizing: border-box;
2018-08-15 11:42:43 +02:00
padding: 90px 15px 0;
margin-bottom: 5px;
2018-02-17 02:39:43 +01:00
}
}
2018-08-15 04:03:56 +02:00
.bd-contentRegion {
2018-02-17 02:39:43 +01:00
.bd-settingswrap {
display: flex;
flex-direction: column;
flex-grow: 1;
2018-08-15 04:03:56 +02:00
> .bd-scrollerWrap {
2018-02-17 02:39:43 +01:00
flex-grow: 1;
> .bd-scroller {
overflow-y: scroll;
2018-08-15 11:42:43 +02:00
.platform-darwin { // sass-lint:disable-line class-name-format
.bd-settings & {
padding-top: 22px;
}
}
}
2018-02-17 02:39:43 +01:00
}
2018-08-15 04:03:56 +02:00
.bd-settingswrapHeader {
2018-02-17 02:39:43 +01:00
outline: 0;
padding: 0;
margin: 30px 20px 20px;
2018-02-17 02:39:43 +01:00
vertical-align: baseline;
display: flex;
flex: 0 0 auto;
2018-02-17 02:39:43 +01:00
2018-08-15 04:03:56 +02:00
.bd-settingswrapHeaderText {
2018-08-15 09:45:10 +02:00
color: $colbdgreen;
2018-02-17 02:39:43 +01:00
text-transform: uppercase;
font-weight: 600;
font-size: 16px;
flex: 1 1 auto;
2018-02-17 02:39:43 +01:00
}
}
2018-08-15 04:03:56 +02:00
.bd-settingswrapItem {
.bd-settingswrapButtonBig {
2018-08-06 12:31:49 +02:00
width: 150px;
height: 50px;
border-radius: 5px;
margin-bottom: 20px;
}
2018-08-15 04:03:56 +02:00
.bd-settingswrapItemDesc {
2018-08-06 12:31:49 +02:00
color: #72767d;
font-size: 14px;
font-weight: 500;
line-height: 20px;
}
2018-08-15 04:03:56 +02:00
.bd-settingswrapInfobox {
2018-08-06 12:31:49 +02:00
display: flex;
align-items: stretch;
2018-08-15 11:42:43 +02:00
background: rgba(32, 34, 37, .6);
2018-08-06 12:31:49 +02:00
border-color: #202225;
padding: 20px;
border-radius: 5px;
border-style: solid;
border-width: 1px;
position: relative;
margin-bottom: 20px;
2018-08-15 04:03:56 +02:00
.bd-settingswrapInfoboxChild {
2018-08-06 12:31:49 +02:00
background-size: 100% 100%;
.bd-wrapper {
margin-bottom: 20px;
h5 {
2018-08-15 11:42:43 +02:00
color: hsla(210, 3%, 87%, .3);
2018-08-06 12:31:49 +02:00
letter-spacing: .5px;
font-size: 12px;
text-transform: uppercase;
font-weight: 600;
line-height: 16px;
}
> span {
color: #b9bbbe;
font-size: 12px;
line-height: 16px;
font-weight: 600;
margin-left: 5px;
margin-right: 5px;
}
> div {
color: #b9bbbe;
> span {
color: #b9bbbe;
2018-08-15 11:42:43 +02:00
opacity: .5;
2018-08-06 12:31:49 +02:00
}
}
}
}
}
}
2018-08-15 04:03:56 +02:00
.bd-settingswrapSubheader {
2018-08-06 12:31:49 +02:00
color: #f6f6f7;
text-transform: uppercase;
margin-bottom: 20px;
font-weight: 600;
}
2018-08-15 04:03:56 +02:00
.bd-settingswrapContents {
padding: 0 20px;
margin-bottom: 84px;
}
2018-02-17 02:39:43 +01:00
}
}