2015-06-23 17:41:25 +02:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2015-07-07 03:10:10 +02:00
|
|
|
body {
|
2015-07-14 13:11:01 +02:00
|
|
|
font-family: 'Muli', Helvetica, Arial, Sans-Serif;
|
2015-07-13 02:51:24 +02:00
|
|
|
font-weight: 300;
|
|
|
|
font-size: 15px;
|
2015-07-14 13:11:01 +02:00
|
|
|
color: #747474;
|
|
|
|
border: 0px;
|
|
|
|
margin: 0px;
|
2015-07-07 03:10:10 +02:00
|
|
|
}
|
|
|
|
|
2015-06-11 19:23:02 +02:00
|
|
|
div.error {
|
|
|
|
color: red;
|
|
|
|
}
|
2015-07-13 02:51:24 +02:00
|
|
|
|
|
|
|
h2 {
|
2015-07-17 01:12:36 +02:00
|
|
|
color: #80cef4;
|
2015-07-13 02:51:24 +02:00
|
|
|
font-weight: 400;
|
|
|
|
font-size: 20px;
|
|
|
|
margin-top: 16px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
2015-07-16 10:37:14 +02:00
|
|
|
|
|
|
|
.mx_Dialog_Background {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #ccc;
|
|
|
|
opacity: 0.5;
|
|
|
|
z-index: -200;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dialog_Wrapper {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Dialog {
|
|
|
|
background-color: #fff;
|
|
|
|
margin: auto;
|
|
|
|
max-width: 500px;
|
|
|
|
z-index: -100;
|
|
|
|
position: relative;
|
|
|
|
top: 100px;
|
|
|
|
}
|