-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (110 loc) · 2.19 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
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
* {
margin: 0;
box-sizing: border-box;
}
body {
font-family: "SuisseIntl","Helvetica","Arial",sans-serif;
-webkit-font-smoothing: antialiased;
color: #3F3F48;
min-height: 100vh;
background-color: #f2f2f2;
position: relative;
font-size: .8rem;
line-height: 1.5;
}
.main-background {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
background-color: #f2f2f2;
min-height: 100vh
}
.title {
font-size: 2rem;
margin-top: 30px;
margin-bottom: 30px;
}
.grid-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 30px;
grid-auto-rows: auto;
min-width: 400px;
max-width: 400px;
min-height: 400px;
min-height: 400px;
background-color: #fff;
border-radius: 20px;
box-shadow: 0px 1px 20px rgb(0 27 58 / 5%);
}
.grid-row {
grid-column: 1 / -1;
}
.menu-row {
display: flex;
justify-content: space-around;
align-items: flex-end;
}
.message-row {
display: flex;
justify-content: center;
align-items: center;
padding:5px 20px;
text-align: center;
}
.select-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}
.erc20-list {
border-style: none;
border-radius: 4px;
font-size: .70rem;
text-align: right;
width: 125px;
cursor: pointer;
}
.erc20-list:hover {
background-color: #f2f2f2;
}
.quote-info-box {
display: flex;
flex-direction: column;
justify-content: space-evenly;
font-size: .5rem;
padding: 20px;
background-color: #fDfDfD;
border-top: 1px;
border-top-style: groove;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
.token-from-row {
display: flex;
justify-content: space-between;
align-items: center;
}
.token-to-row {
display: flex;
justify-content: space-between;
align-items: center;
}
.estimated-gas-row {
display: flex;
justify-content: space-between;
align-items: center;
}
.btn {
background-color: #fff;
border: none;
cursor: pointer;
}
.btn-swapping {
color: #87888C;
}
.hide {
display: none;
}