]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+signup/shared/signup-success.component.scss
Move zxx to its own group in select-languages component (#4664)
[github/Chocobozzz/PeerTube.git] / client / src / app / +signup / shared / signup-success.component.scss
CommitLineData
1d5342ab
C
1svg {
2 width: 100px;
3 display: block;
4 margin: 40px auto 0;
5}
6
7.path {
8 stroke-dasharray: 1000;
9 stroke-dashoffset: 0;
10
11 &.circle {
1d5342ab
C
12 animation: dash .9s ease-in-out;
13 }
14
15 &.line {
16 stroke-dashoffset: 1000;
1d5342ab
C
17 animation: dash .9s .35s ease-in-out forwards;
18 }
19
20 &.check {
21 stroke-dashoffset: -100;
1d5342ab
C
22 animation: dash-check .9s .35s ease-in-out forwards;
23 }
24}
25
b247a132 26.bottom-message {
1d5342ab
C
27 text-align: center;
28 margin: 20px 0 60px;
29 font-size: 1.25em;
b247a132
C
30 color: #73AF55;
31}
1d5342ab 32
b247a132
C
33.alert {
34 font-size: 15px;
35 text-align: center;
1d5342ab
C
36}
37
1d5342ab
C
38@keyframes dash {
39 0% {
40 stroke-dashoffset: 1000;
41 }
42 100% {
43 stroke-dashoffset: 0;
44 }
45}
46
1d5342ab
C
47@keyframes dash-check {
48 0% {
49 stroke-dashoffset: -100;
50 }
51 100% {
52 stroke-dashoffset: 900;
53 }
54}