|
| 1 | +/* |
| 2 | +Copyright 2020 New Vector Ltd |
| 3 | +
|
| 4 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +you may not use this file except in compliance with the License. |
| 6 | +You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | +Unless required by applicable law or agreed to in writing, software |
| 11 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +See the License for the specific language governing permissions and |
| 14 | +limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +.mx_ErrorView { |
| 18 | + background: #c5e0f7; |
| 19 | + background: -moz-linear-gradient(top, #c5e0f7 0%, #ffffff 100%); |
| 20 | + background: -webkit-linear-gradient(top, #c5e0f7 0%, #ffffff 100%); |
| 21 | + background: linear-gradient(to bottom, #c5e0f7 0%, #ffffff 100%); |
| 22 | + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c5e0f7', endColorstr='#ffffff',GradientType=0 ); |
| 23 | + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; |
| 24 | + width: 100%; |
| 25 | + height: 100%; |
| 26 | + color: #000; |
| 27 | + |
| 28 | + .mx_ErrorView_container { |
| 29 | + max-width: 680px; |
| 30 | + margin: auto; |
| 31 | + } |
| 32 | + |
| 33 | + .mx_Button { |
| 34 | + border: 0; |
| 35 | + border-radius: 4px; |
| 36 | + font-size: 18px; |
| 37 | + margin-left: 4px; |
| 38 | + margin-right: 4px; |
| 39 | + min-width: 80px; |
| 40 | + background-color: #03B381; |
| 41 | + color: #fff; |
| 42 | + cursor: pointer; |
| 43 | + padding: 12px 22px; |
| 44 | + word-break: break-word; |
| 45 | + text-decoration: none; |
| 46 | + } |
| 47 | + |
| 48 | + .mx_Center { |
| 49 | + justify-content: center; |
| 50 | + } |
| 51 | + |
| 52 | + .mx_HomePage_header { |
| 53 | + color: #2E2F32; |
| 54 | + display: flex; |
| 55 | + align-items: center; |
| 56 | + justify-content: center; |
| 57 | + } |
| 58 | + |
| 59 | + font-size: 1.067rem; // 16px |
| 60 | + h1 { |
| 61 | + font-size: 2.133rem; // 32px |
| 62 | + } |
| 63 | + h2 { |
| 64 | + font-size: 1.600rem; // 24px |
| 65 | + color: #000; |
| 66 | + } |
| 67 | + |
| 68 | + .mx_HomePage_col { |
| 69 | + display: flex; |
| 70 | + flex-direction: row; |
| 71 | + } |
| 72 | + |
| 73 | + .mx_HomePage_row { |
| 74 | + flex: 1 1 0; |
| 75 | + display: flex; |
| 76 | + flex-direction: row; |
| 77 | + flex-wrap: wrap; |
| 78 | + } |
| 79 | + |
| 80 | + .mx_HomePage_logo { |
| 81 | + margin: auto 20px auto 0; |
| 82 | + } |
| 83 | + |
| 84 | + h1, h2 { |
| 85 | + font-weight: 600; |
| 86 | + margin-bottom: 32px; |
| 87 | + } |
| 88 | + |
| 89 | + .mx_Spacer { |
| 90 | + margin-top: 24px; |
| 91 | + } |
| 92 | + |
| 93 | + .mx_FooterLink { |
| 94 | + color: #368BD6; |
| 95 | + text-decoration: none; |
| 96 | + } |
| 97 | +} |
0 commit comments