-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloading.html
93 lines (92 loc) · 2.53 KB
/
loading.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loading LangFlow</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
overflow: hidden;
}
.loading-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width: 480px;
height: 230px;
padding: 15px;
background-color: #1E3A8A; /* hsl(248 99% 53%); /* electric blue */
box-shadow: 0 0px 12px rgba(0, 0, 0.0, 0.8);
position: relative;
}
.loading-header, .loading-footer {
display: flex;
align-items: center;
justify-content: flex-start;
width: 100%;
height: 32px;
}
.loading-icon {
width: 32px;
height: 32px;
margin-right: 10px;
fill: white;
}
.loading-name {
font-size: 24px;
color: white;
}
.loading-content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-grow: 1;
width: 100%;
}
.loading-title {
font-size: 36px;
color: white;
margin: 0;
}
.loading-subtitle {
font-size: 18px;
color: white;
margin: 10px 0;
}
.loading-items {
text-align: left;
font-size: 14px;
color: white;
position: absolute;
left: 15px;
bottom: 15px;
}
</style>
</head>
<body>
<div class="loading-container">
<div class="loading-header">
<img src="langflow-icon-b.svg" alt="LangFlow Icon" class="loading-icon">
<div class="loading-name">LangFlow</div>
</div>
<div class="loading-content">
<div class="loading-title">LangFlow</div>
<div class="loading-subtitle">AI/ML Framework</div>
</div>
<div class="loading-footer">
<div class="loading-items">
<div>Loading items...</div>
</div>
</div>
</div>
</body>
</html>