Skip to content

Commit eff5375

Browse files
committed
PWA application changed
1 parent 799f655 commit eff5375

30 files changed

+233
-35
lines changed

pubspec.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ packages:
603603
name: material_color_utilities
604604
url: "https://pub.dartlang.org"
605605
source: hosted
606-
version: "0.2.0"
606+
version: "0.1.5"
607607
meta:
608608
dependency: transitive
609609
description:
@@ -986,7 +986,7 @@ packages:
986986
name: source_span
987987
url: "https://pub.dartlang.org"
988988
source: hosted
989-
version: "1.9.1"
989+
version: "1.9.0"
990990
sqflite:
991991
dependency: transitive
992992
description:
@@ -1014,7 +1014,7 @@ packages:
10141014
name: stream_channel
10151015
url: "https://pub.dartlang.org"
10161016
source: hosted
1017-
version: "2.1.1"
1017+
version: "2.1.0"
10181018
stream_transform:
10191019
dependency: transitive
10201020
description:
@@ -1070,7 +1070,7 @@ packages:
10701070
name: test_api
10711071
url: "https://pub.dartlang.org"
10721072
source: hosted
1073-
version: "0.4.14"
1073+
version: "0.4.12"
10741074
timing:
10751075
dependency: transitive
10761076
description:
@@ -1161,7 +1161,7 @@ packages:
11611161
name: vector_math
11621162
url: "https://pub.dartlang.org"
11631163
source: hosted
1164-
version: "2.1.4"
1164+
version: "2.1.2"
11651165
watcher:
11661166
dependency: transitive
11671167
description:

web/css/default-style.css

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
body{
2+
margin: 0;
3+
padding: 0;
4+
color: #F7FCFF;
5+
font-family: sans-serif;
6+
}
7+
8+
#loader {
9+
width: 100vw;
10+
height: 100vh;
11+
/* display: block; */
12+
display: flex;
13+
flex-direction: column;
14+
justify-content: center;
15+
justify-items: center;
16+
align-items: center;
17+
align-content: center;
18+
background-color: #0C1D2F;
19+
}
20+
21+
#loader-title {
22+
font-weight: 500;
23+
font-size: 22;
24+
color: white;
25+
}
26+
27+
28+
.lds-ellipsis {
29+
display: inline-block;
30+
position: relative;
31+
width: 80px;
32+
height: 80px;
33+
}
34+
.lds-ellipsis div {
35+
position: absolute;
36+
top: 33px;
37+
width: 13px;
38+
height: 13px;
39+
border-radius: 50%;
40+
background: #fff;
41+
animation-timing-function: cubic-bezier(0, 1, 1, 0);
42+
}
43+
.lds-ellipsis div:nth-child(1) {
44+
left: 8px;
45+
animation: lds-ellipsis1 0.6s infinite;
46+
}
47+
.lds-ellipsis div:nth-child(2) {
48+
left: 8px;
49+
animation: lds-ellipsis2 0.6s infinite;
50+
}
51+
.lds-ellipsis div:nth-child(3) {
52+
left: 32px;
53+
animation: lds-ellipsis2 0.6s infinite;
54+
}
55+
.lds-ellipsis div:nth-child(4) {
56+
left: 56px;
57+
animation: lds-ellipsis3 0.6s infinite;
58+
}
59+
@keyframes lds-ellipsis1 {
60+
0% {
61+
transform: scale(0);
62+
}
63+
100% {
64+
transform: scale(1);
65+
}
66+
}
67+
@keyframes lds-ellipsis3 {
68+
0% {
69+
transform: scale(1);
70+
}
71+
100% {
72+
transform: scale(0);
73+
}
74+
}
75+
@keyframes lds-ellipsis2 {
76+
0% {
77+
transform: translate(0, 0);
78+
}
79+
100% {
80+
transform: translate(24px, 0);
81+
}
82+
}

web/favicon.png

-917 Bytes
Binary file not shown.

web/icons/Icon-192.png

-5.17 KB
Binary file not shown.

web/icons/Icon-512.png

-8.06 KB
Binary file not shown.

web/icons/Icon-maskable-192.png

-5.46 KB
Binary file not shown.

web/icons/Icon-maskable-512.png

-20.5 KB
Binary file not shown.
1.39 KB
Loading
4.01 KB
Loading
1.02 KB
Loading

0 commit comments

Comments
 (0)