forked from eigenphi/EigenTx-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbutton.css
96 lines (84 loc) · 1.46 KB
/
button.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
body {
background: #eff2f7;
}
#stage {
margin: 20px 8px;
background: white;
padding: 20px 10px;
box-shadow: 0 0 10px 0 rgba(56,71,109,0.09);
border-radius: 8px;
width: 286px;
}
#actions a {
font-family: Arial, Helvetica, sans-serif;
white-space: nowrap;
cursor: pointer;
border-radius: 5px;
padding: 7px 13px;
display: block;
line-height: 16px;
font-size: 14px;
margin-bottom: 10px;
}
#actions a img{
vertical-align: middle;
width: 16px;
height: 16px;
margin-right: 7px;
position: relative;
top: -2px;
}
#actions a:hover {
color: #722DEE;
background: #f5f7fb;
}
#chain-logos {
margin-top: 20px;
border-top: 1px dashed #ced4da;
padding: 20px 0;
display: flex;
justify-content: space-around;
}
#chain-logos .logo-wrap {
display: inline-block;
border-radius: 8px;
border: 1px dashed #ced4da;
width: 30px;
height: 30px;
line-height: 28px;
text-align: center;
}
#chain-logos .logo-wrap.enable{
background: #f5f7fb;
border: none;
width: 32px;
height: 32px;
}
#chain-logos .logo-wrap img{
width: 20px;
height: 20px;
opacity: 0.15;
vertical-align: middle;
}
#chain-logos .logo-wrap.enable img{
opacity: 1;
}
#actions a img.hover{
display: none;
}
#actions a img.normal{
display: inline-block;
}
#actions a:hover img.normal{
display: none
}
#actions a:hover img.hover{
display: inline-block
}
#privacy-wrap {
text-align: center;
}
#privacy-wrap a {
cursor: pointer;
color: #B5B5C3;
}