forked from Jerga99/electron-updated
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplash.css
More file actions
40 lines (34 loc) · 684 Bytes
/
splash.css
File metadata and controls
40 lines (34 loc) · 684 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
html, body {
height: 100%;
overflow: hidden;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html {
color: #f3f3f3;
background-color: #27272d;
}
h1 {
margin-left: 25px;
}
.loading-container {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.react-logo {
animation: App-logo-spin infinite 15s linear;
}