bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/settings/submenus/styles.scss

97 lines
1.3 KiB
SCSS
Raw Normal View History

@import "../../../stylesheets/variables/_all";
2017-01-27 23:41:11 +08:00
.title {
color: $color-gray-dark;
font-weight: 400;
font-size: 1.3rem;
margin: 0;
margin-bottom: 1.5rem;
}
2017-01-27 23:41:11 +08:00
.form {
display: flex;
flex-flow: column;
}
2017-01-27 23:41:11 +08:00
.row {
display: flex;
flex-flow: row;
flex-grow: 1;
justify-content: space-between;
margin-bottom: 0.7rem;
}
2017-01-27 23:41:11 +08:00
.col {
display: flex;
flex-grow: 1;
flex-basis: 0;
margin-right: 1rem;
2017-01-27 23:41:11 +08:00
&:last-child {
margin-right: 0;
}
}
2017-01-27 23:41:11 +08:00
.label {
color: $color-gray-light;
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
2017-01-27 23:41:11 +08:00
.labelSmall {
color: $color-link;
font-size: 0.7rem;
margin-bottom: 0.3rem;
2016-08-24 23:06:51 +08:00
}
2017-01-27 23:41:11 +08:00
.formElement {
display: flex;
flex-flow: column;
flex-grow: 1;
}
2017-01-27 23:41:11 +08:00
.tabContent {
padding: 1rem;
padding-right: 0;
}
2017-01-27 23:41:11 +08:00
.select {
background-color: #fff;
border: 0;
border-bottom: 0.1rem solid $color-gray-lighter;
color: $color-gray-light;
width: 100%;
2017-01-27 23:41:11 +08:00
// appearance: none;
height: 1.75rem;
}
2017-01-27 23:41:11 +08:00
.audioMeter {
width: 100%;
}
2016-12-23 16:26:22 +08:00
2017-01-27 23:41:11 +08:00
.pullContentRight {
display: flex;
justify-content: flex-end;
flex-flow: row;
2016-12-23 16:26:22 +08:00
}
2017-01-27 23:41:11 +08:00
.pullContentCenter {
display: flex;
justify-content: center;
flex-flow: row;
}
2017-01-27 23:41:11 +08:00
.separator {
margin: 2.5rem 0;
border: 1px solid $color-gray-lighter;
opacity: 0.25;
}
2017-01-27 23:41:11 +08:00
.bold {
font-weight: bold;
}
2017-01-27 23:41:11 +08:00
.spacedLeft {
margin-left: 1rem;
2016-12-23 16:26:22 +08:00
}