mirror of https://github.com/vector-im/riot-web
80 lines
1.6 KiB
SCSS
80 lines
1.6 KiB
SCSS
/*
|
|
Copyright 2019 New Vector 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_AuthBody {
|
|
width: 500px;
|
|
background-color: $authpage-body-bg-color;
|
|
border-radius: 0 4px 4px 0;
|
|
padding: 25px 60px;
|
|
box-sizing: border-box;
|
|
font-size: 12px;
|
|
color: $authpage-body-color;
|
|
}
|
|
|
|
.mx_AuthBody h2 {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.mx_AuthBody h3 {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: $primary-fg-color;
|
|
}
|
|
|
|
.mx_AuthBody_editServerDetails {
|
|
padding-left: 1em;
|
|
font-size: 12px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.mx_AuthBody .mx_Field input {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.mx_AuthBody_fieldRow {
|
|
display: flex;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.mx_AuthBody_fieldRow > * {
|
|
margin: 0 5px;
|
|
flex: 1;
|
|
}
|
|
|
|
.mx_AuthBody_fieldRow > *:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.mx_AuthBody_fieldRow > *:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.mx_AuthBody a:link,
|
|
.mx_AuthBody a:hover,
|
|
.mx_AuthBody a:visited {
|
|
color: $accent-color;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.mx_AuthBody_changeFlow {
|
|
display: block;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|