-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathbase.scss
More file actions
102 lines (84 loc) · 1.39 KB
/
base.scss
File metadata and controls
102 lines (84 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
* Copyright (c) 2016-present, Parse, LLC
* All rights reserved.
*
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
@import 'globals.scss';
:root {
--sidebar-width: 300px;
}
html, body {
min-height: 100vh;
}
html{
background-color: #110D11;
}
body {
@include NotoSansFont;
box-sizing: border-box;
color: $mainTextColor;
background-color: #110D11;
}
:global(#browser_mount) {
min-height: 100vh;
background: #FDFAFB;
}
* {
margin: 0;
padding: 0;
box-sizing: inherit;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
a {
color: $blue;
cursor: pointer;
text-decoration: none;
}
ul {
list-style: none;
}
table {
border-collapse: collapse;
}
.unselectable {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.verticalCenter {
position: absolute;
top: 50%;
@include transform(translateY(-50%));
}
.horizontalCenter {
margin: auto;
text-align: center;
}
.center {
position: absolute;
text-align: center;
top: 50%;
left: 50%;
@include transform(translate(-50%, -50%));
}
.failedBackground {
background-color: $red;
}
.succeededBackground {
background-color: $green;
}
.progressBackground {
background-color: $blue;
}
.failedText {
color: $red;
}
.succeededText {
color: $green;
}
.progressText {
color: $blue;
}