-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsplash.css
More file actions
62 lines (55 loc) · 1.06 KB
/
splash.css
File metadata and controls
62 lines (55 loc) · 1.06 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
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
/*background-color: #4f244c; Solid color background */
background: linear-gradient(135deg, #4f244c 0%, #702d55 100%);
color: #ecf0f1;
font-family: Arial, sans-serif;
}
.container {
position: relative;
text-align: center;
width: 100%;
max-width: 400px;
}
.welcome-text {
position: absolute;
top: 10px;
left: 20px;
font-size: 1.2em;
}
.author-name {
position: absolute;
top: 40px;
left: 20px;
font-size: 0.9em;
}
.version {
position: absolute;
top: 60px;
left: 20px;
font-size: 0.6em;
}
.progress-bar-container {
width: 80%;
margin: 250px auto 0 auto;
background-color: #ddd;
border-radius: 10px;
height: 10px;
}
.progress-bar {
width: 0;
height: 100%;
background-color: #912f65;
border-radius: 10px;
animation: load 3s linear infinite;
}
@keyframes load {
0% { width: 0; }
100% { width: 100%; }
}