-
Notifications
You must be signed in to change notification settings - Fork 2
/
root.css
97 lines (80 loc) · 1.55 KB
/
root.css
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
/* terminal.css by Gioni06, License: https://github.com/Gioni06/terminal.css/blob/master/LICENSE */
@import url('./terminal.min.css');
@font-face {
font-family: 'Inconsolata';
src: url('./Inconsolata-VariableFont_wdth,wght.ttf');
}
:root {
--font-stack: Inconsolata, Consolas, monospace;
--global-font-size: 17px;
--page-width: 860px;
}
* {
font-family: var(--font-stack);
}
.btn.btn-ghost:hover {
color: var(--invert-font-color);
background: var(--primary-color);
}
.cols {
display: flex;
}
.cols>* {
flex: 1;
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: #222225;
--font-color: #e8e9ed;
--invert-font-color: #222225;
--secondary-color: #a3abba;
--tertiary-color: #a3abba;
--primary-color: #62c4ff;
--error-color: #ff3c74;
--progress-bar-background: #3f3f44;
--progress-bar-fill: #62c4ff;
--code-bg-color: #3f3f44;
}
}
.hidden {
display: none;
}
.logo img {
width: 300px;
}
.partner-logos {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.partner-logo {
margin: 0px 20px 10px 0px;
display: flex;
justify-content: center;
align-items: center;
}
.badge-link:hover {
background: transparent;
}
.epos-logo img,
.exp-logo img {
height: auto;
max-height: 50px;
width: auto;
object-fit: contain;
}
.app-stores {
display: flex;
justify-content: flex-start;
align-items: center;
gap: 10px;
margin: 1cap 0 0.5cap 0;
}
.store-badge {
height: 48px;
width: auto;
object-fit: contain;
}
.store-badge:hover {
background-color: transparent;
}