2020-06-04 11:04:35 -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 05:09:48 -04:00
|
|
|
@import 'color-scheme';
|
2020-06-04 11:04:35 -04:00
|
|
|
|
2020-06-04 09:35:07 -04:00
|
|
|
// CSS reset
|
|
|
|
|
|
|
|
* {
|
2020-06-24 11:23:36 -04:00
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
2020-06-04 09:35:07 -04:00
|
|
|
}
|
|
|
|
|
2020-06-04 11:04:35 -04:00
|
|
|
// Styling for universal elements
|
|
|
|
|
2020-06-04 09:35:07 -04:00
|
|
|
html,
|
|
|
|
body,
|
|
|
|
#root {
|
2020-06-24 11:23:36 -04:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2020-06-04 11:04:35 -04:00
|
|
|
|
2020-09-21 13:27:37 -04:00
|
|
|
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
2020-06-24 11:23:36 -04:00
|
|
|
font-style: normal;
|
2020-06-04 11:04:35 -04:00
|
|
|
|
2020-06-24 21:01:53 -04:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 24px;
|
|
|
|
|
2020-06-24 11:23:36 -04:00
|
|
|
color: $font;
|
2020-08-17 12:48:13 -04:00
|
|
|
|
2020-09-01 05:53:16 -04:00
|
|
|
overflow: auto;
|
2020-06-04 11:04:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2020-06-24 11:23:36 -04:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 32px;
|
|
|
|
text-align: center;
|
2020-09-15 19:19:52 -04:00
|
|
|
color: $foreground;
|
2020-06-04 09:35:07 -04:00
|
|
|
}
|
2020-06-24 19:41:56 -04:00
|
|
|
|
2020-09-10 06:27:47 -04:00
|
|
|
h4 {
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-06-24 19:41:56 -04:00
|
|
|
a {
|
|
|
|
color: $link;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2020-06-24 21:01:53 -04:00
|
|
|
|
|
|
|
hr {
|
|
|
|
border: 1px solid lighten($grey, 50);
|
|
|
|
margin: 0 40px;
|
|
|
|
}
|
2020-09-29 04:32:26 -04:00
|
|
|
|
2020-10-23 12:04:54 -04:00
|
|
|
// Suppress focus ring on form controls for mouse users
|
|
|
|
[data-whatintent='mouse'] *:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2020-09-29 04:32:26 -04:00
|
|
|
.matrixIdentifier {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|