forked from mctrivia/DigiSweep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (113 loc) · 2.09 KB
/
style.css
File metadata and controls
125 lines (113 loc) · 2.09 KB
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
.page{
display: none;
padding-top: 50px;
height: 100%;
overflow-y: auto;
}
.bip39dots{
height: 14px;
width: 70px;
display: inline-block;
}
#exportLink{
font-size: 30px;
padding: 10px;
}
#pathsTable{
display: table;
width: 100%;
}
.pathsRow{
display: table-row;
}
.pathsHead{
display: table-cell;
border: 1px solid #999999;
background-color: #888888;
}
.pathsCell{
display: table-cell;
border: 1px solid #999999;
background-color: #FFFFFF;
}
#common_path_header{
font-size: 22px;
}
#balanceTable{
display: table;
width: 100%;
}
.balanceRow{
display: table-row;
}
.balanceHead{
display: table-cell;
border: 1px solid #999999;
background-color: #888888;
}
.balanceCellAddress{
display: table-cell;
border: 1px solid #999999;
background-color: #FFFFFF;
}
.balanceCellValue{
display: table-cell;
padding: 3px 10px;
border: 1px solid #999999;
}
#recipientsTable{
display: table;
width: 100%;
}
.recipientsRow{
display: table-row;
}
.recipientsHead{
display: table-cell;
padding: 3px 10px;
border: 1px solid #999999;
background-color: #888888;
}
.recipientsCellAddress{
display: table-cell;
padding: 3px 10px;
border: 1px solid #999999;
background-color: #FFFFFF;
}
.recipientsCellAmount{
display: table-cell;
padding: 3px 10px;
border: 1px solid #999999;
}
#recipientsNewAddress{
padding: 0px;
border: 0px;
}
#shadow {
position: fixed;
padding: 0;
margin: 0;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
display: none;
z-index: 999999;
}
.window {
text-align: center;
margin: 0;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: none;
background-color: white;
border-radius: 2px;
box-shadow: 0 0 15px;
font-size: 14px;
font-weight: bold;
background-color: #EEEEEE;
z-index: 1000000;
}