forked from zombieFox/nightTab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
executable file
·50 lines (41 loc) · 1002 Bytes
/
Copy pathbase.css
File metadata and controls
executable file
·50 lines (41 loc) · 1002 Bytes
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
::selection {
background-color: rgb(var(--theme-accent));
color: rgb(var(--theme-white));
}
html {
font-size: var(--root-font-size);
}
body {
background-color: var(--background);
color: rgb(var(--theme-style-text));
font-size: 1rem;
line-height: 1.6;
font-family: var(--font-regular);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
transition: background-color var(--layout-animation-speed-fast) ease-in-out;
}
.is-layout-scroll-past-end body {
margin-bottom: 40vh;
}
.is-layout-alignment-horizontal-left body {
align-items: flex-start;
}
.is-layout-alignment-horizontal-center body {
align-items: center;
}
.is-layout-alignment-horizontal-right body {
align-items: flex-end;
}
.is-layout-alignment-vertical-top body {
justify-content: flex-start;
}
.is-layout-alignment-vertical-center body {
justify-content: center;
}
.is-layout-alignment-vertical-bottom body {
justify-content: flex-end;
}