-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (86 loc) · 1.49 KB
/
style.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
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
93
94
.App {
height: 100vh;
background-color: #0d1116;
overflow: scroll;
text-align: center;
}
.container {
height: 100%;
background-color: #0d1116;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.header {
margin: 0;
font-size: 50px;
font-weight: bold;
color: white;
}
.content-container {
background-color: #a200d6;
}
.connect-wallet-container {
display: flex;
flex-direction: column;
margin: auto;
max-width: 550;
}
.connect-wallet-button {
background-image: linear-gradient(
to right,
#ff8177 0%,
#ff867a 0%,
#ff8c7f 21%,
#f99185 52%,
#cf556c 78%,
#b12a5b 100%
);
background-size: 200% 200%;
animation: gradient-animation 4s ease infinite;
}
.footer-container {
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 30px;
}
.footer-text {
color: white;
font-size: 16px;
font-weight: bold;
}
/* Key Frames */
@-webkit-keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@-moz-keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}