2020-06-04 09:35:07 -04:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-09-01 04:43:29 -04:00
|
|
|
@import './color-scheme';
|
2020-08-06 11:38:26 -04:00
|
|
|
|
2020-07-30 08:30:27 -04:00
|
|
|
#root {
|
|
|
|
background-color: $app-background;
|
2020-09-01 04:43:29 -04:00
|
|
|
background-image: url('./imgs/background.svg');
|
2020-09-10 06:31:01 -04:00
|
|
|
background-repeat: no-repeat;
|
2020-09-10 06:27:47 -04:00
|
|
|
background-position: 50% -20%;
|
2020-07-30 08:30:27 -04:00
|
|
|
}
|
|
|
|
|
2020-06-04 09:35:07 -04:00
|
|
|
@mixin spacer {
|
2020-06-24 11:23:36 -04:00
|
|
|
width: 100%;
|
2020-06-24 21:01:53 -04:00
|
|
|
flex-grow: 0;
|
2020-06-24 11:23:36 -04:00
|
|
|
flex-shrink: 0;
|
2020-06-04 09:35:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.topSpacer {
|
2020-06-24 11:23:36 -04:00
|
|
|
@include spacer;
|
2020-06-04 09:35:07 -04:00
|
|
|
|
2020-06-24 21:01:53 -04:00
|
|
|
height: 20vh;
|
2020-06-04 09:35:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.bottomSpacer {
|
2020-06-24 11:23:36 -04:00
|
|
|
@include spacer;
|
2020-06-04 09:35:07 -04:00
|
|
|
|
2020-06-24 11:23:36 -04:00
|
|
|
height: 10vh;
|
2020-06-04 09:35:07 -04:00
|
|
|
}
|