-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.ts
171 lines (155 loc) · 3.42 KB
/
style.ts
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
import styled from "styled-components";
export const Wrapper = styled.div`
backgroung-color: white;
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
`;
export const Header = styled.div`
display: flex;
width: 95%;
`;
export const Title = styled.h1`
font-size: 40px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
align-self: center;
margin: 100px;
`;
export const SubTitle = styled.h1`
font-size: 20px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
align-self: center;
`;
export const InputsBox = styled.div`
display: flex;
flex-direction: column;
margin: 50px 0px 0px 20px;
width: 100%;
align-items: center;
`;
export const InputLabel = styled.label`
font-size: 18px;
font-family: Arial, Helvetica, sans-serif;
margin-bottom: 7px;
`;
export const InputField = styled.input`
font-size: 20px;
min-width: 250px;
border-radius: 20px;
outline: 0px;
padding: 10px;
font-family: Arial, Helvetica, sans-serif;
width: 300px;
margin-bottom: 25px;
background: #fff;
`;
export const WalletAddress = styled.div`
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: 20px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
align-self: center;
outline: 2px solid dodgerblue;
border-radius: 30px;
padding: 10px 30px;
margin: 20px 0px 0px 0px;
`;
export const Menu = styled.div`
display: flex;
flex-direction: column;
margin-top: 50px;
`;
export const MenuItemsLine = styled.div`
display: flex;
padding: 20px;
gap: 20px;
justify-content: center;
`;
export const Button = styled.button`
font-size: 20px;
min-width: 250px;
border-radius: 30px;
outline: 0px;
padding: 20px;
background: #fff;
font-family: Arial, Helvetica, sans-serif;
cursor: pointer;
:hover {
transform: scale(1.009);
}
`;
export const QrButton = styled.button`
font-size: 17px;
border-radius: 20px;
padding: 0px 24px;
margin: 0px 12px;
background: #fff;
font-family: Arial, Helvetica, sans-serif;
cursor: pointer;
:hover {
transform: scale(1.1);
}
`;
export const ChainButton = styled.button<{ primary: boolean }>`
font-size: 20px;
border-radius: 20px;
border: 2px solid dodgerblue;
padding: 0px 24px;
width: 250px;
background: #fff;
font-family: Arial, Helvetica, sans-serif;
cursor: pointer;
background: ${(props) => (props.primary ? "dodgerblue" : "white")};
color: ${(props) => (props.primary ? "white" : "dodgerblue")};
transition: background-color 0.8s ease;
:hover {
transform: scale(1.009);
}
`;
export const LogoutButton = styled.button`
font-size: 17px;
min-width: 250px;
border-radius: 30px;
border-color: red;
outline: 0px;
margin-top 40px;
padding: 10px 20px;
background: #fff;
font-family: Arial, Helvetica, sans-serif;
cursor: pointer;
:hover {
transform: scale(1.009);
}
`;
export const Powered = styled.div`
position: absolute;
bottom: 0px;
font-size: 15px;
font-family: Arial, Helvetica, sans-serif;
padding: 40px;
display: flex;
flexdirection: column;
`;
export const Table = styled.table`
font-size: 15px;
align-self: center;
font-family: Arial, Helvetica, sans-serif;
margin: 40px;
padding: 20px;
gap: 20px;
outline: 2px solid black;
border-radius: 20px;
width: 80vw;
`;
export const Th = styled.th`
border: 1px solid;
padding: 5px;
`;
export const Td = styled.td`
border: 1px solid;
`;