104 lines
No EOL
2.1 KiB
CSS
104 lines
No EOL
2.1 KiB
CSS
/*
|
|
Copyright 2015, 2016 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 {
|
|
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 h3 {
|
|
text-transform: uppercase;
|
|
color: #3d3b39;
|
|
font-weight: 600;
|
|
font-size: 13px;
|
|
margin-top: 36px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.mx_RoomSettings input,
|
|
.mx_RoomSettings textarea {
|
|
border-radius: 3px;
|
|
border: 1px solid #c7c7c7;
|
|
font-weight: 300;
|
|
font-size: 13px;
|
|
padding: 9px;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.mx_RoomSettings .mx_RoomSettings_roomColor {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: 37px;
|
|
height: 37px;
|
|
border: 1px solid #979797;
|
|
margin-right: 13px;
|
|
}
|
|
|
|
.mx_RoomSettings .mx_RoomSettings_roomColor_selected {
|
|
position: absolute;
|
|
left: 10px;
|
|
top: 4px;
|
|
}
|
|
|
|
.mx_RoomSettings .mx_RoomSettings_roomColorPrimary {
|
|
height: 10px;
|
|
position: absolute;
|
|
bottom: 0px;
|
|
width: 100%;
|
|
}
|
|
|
|
.mx_RoomSettings .mx_RoomAvatar {
|
|
border-radius: 120px;
|
|
}
|
|
|
|
.mx_RoomSettings input[type="file"] {
|
|
border: none;
|
|
}
|
|
|
|
.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: 15px;
|
|
color: #fff;
|
|
background-color: #76cfa6;
|
|
width: auto;
|
|
margin: auto;
|
|
padding: 6px;
|
|
padding-left: 1em;
|
|
padding-right: 1em;
|
|
} |