forked from CorpseCodesFr/Vangaurd-Calculator-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
26 lines (24 loc) · 741 Bytes
/
main.css
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
@import url("https://fonts.googleapis.com/css2?family=Trade+Winds&display=swap");
svg {
font-family: "Trade Winds", sans-serif;
width: 100%; height: 100%;
}
svg text {
animation: stroke 5s infinite alternate;
stroke-width: 2;
stroke: #365FA0;
font-size: 100px;
}
@keyframes stroke {
0% {
fill: rgba(72,138,204,0); stroke: rgba(54,95,160,1);
stroke-dashoffset: 25%; stroke-dasharray: 0 50%; stroke-width: 2;
}
70% {fill: rgba(72,138,204,0); stroke: rgba(54,95,160,1); }
80% {fill: rgba(72,138,204,0); stroke: rgba(54,95,160,1); stroke-width: 3; }
100% {
fill: rgba(72,138,204,1); stroke: rgba(54,95,160,0);
stroke-dashoffset: -25%; stroke-dasharray: 50% 0; stroke-width: 0;
}
}
.wrapper {background-color: #FFFFFF};