70 lines
1.4 KiB
CSS
70 lines
1.4 KiB
CSS
/*
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_RoomSettings {
|
|
max-height: 250px;
|
|
padding-top: 12px;
|
|
}
|
|
|
|
.mx_RoomSettings_settings {
|
|
display: table;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.mx_RoomSettings_settings > div {
|
|
display: table-row;
|
|
}
|
|
|
|
.mx_RoomSettings_settings > div > * {
|
|
display: table-cell;
|
|
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.mx_RoomSettings input,
|
|
.mx_RoomSettings textarea {
|
|
border-radius: 3px;
|
|
border: 1px solid #c7c7c7;
|
|
font-weight: 300;
|
|
font-size: 14px;
|
|
padding: 9px;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.mx_RoomSettings_description {
|
|
width: 330px;
|
|
}
|
|
|
|
.mx_RoomSettings_buttons {
|
|
text-align: right;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.mx_RoomSettings_button {
|
|
display: inline;
|
|
border: 0px;
|
|
height: 36px;
|
|
border-radius: 36px;
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
background-color: #80cef4;
|
|
width: auto;
|
|
margin: auto;
|
|
padding: 6px;
|
|
padding-left: 1em;
|
|
padding-right: 1em;
|
|
} |