-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsample.css
105 lines (89 loc) · 1.8 KB
/
sample.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
.counters {
margin-bottom: 15px;
}
.password {
margin-top: 45px;
}
.accounts {
min-width: 400px;
margin-top: 30px;
margin-bottom: 75px;
}
.line {
width: 700px;
height: 15px;
}
.account {
float:left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 510px;
}
@media (max-width: 700px) {
.line { width: 400px; }
.account{ width: 250px; }
}
.balance {
float:right;
width: 150px;
text-align: right;
}
.remove {
float:right;
width: 40px;
text-align: right;
color: red;
font-weight: bold;
cursor: pointer;
}
.remove:hover {
text-decoration: underline;
}
.head {
font-weight: bold;
text-align: center
}
.history {
}
.hist_hash , .hist_account{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
}
.hist_amount{
text-align: right;
}
.hide {
display: none;
}
.button {
background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);
-webkit-border-radius: 6;
-moz-border-radius: 6;
border-radius: 6px;
font-family: Arial;
color: #ffffff;
font-size: 14px;
padding: 4px 8px 4px 8px;
text-decoration: none;
display: inline-block;
}
.button:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}
input.readonly {
background-color: #cccccc;
}