forked from zombie466851/Ethereum-Web-Wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (52 loc) · 909 Bytes
/
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
body {
background-color: #eee;
font-family: sans-serif;
font-size: 18px;
margin-left: 80px;
margin-top: 50px;
margin-bottom: 40px;
}
.center {
margin-top: 30px;
margin-bottom: 30px;
}
th {
text-align: left;
padding: 0 15px 15px 0;
}
td {
padding: 0 15px 15px 0;
}
input[type=text] {
border: 1px solid #444;
font-size: 16px;
padding: 10px;
width: 500px;
}
.submit {
border: 1px solid #444;
font-size: 16px;
text-align: center;
padding: 10px;
width: 480px;
cursor: pointer;
box-shadow: 0px 0px 6px #888;
}
.submit:hover {
border: 1px solid #999;
box-shadow: 0px 0px 5px #aaa;
}
.submit:active {
box-shadow: none;
}
.submit.disable {
box-shadow: none;
opacity: 0.5;
}
.submit.disable:hover {
border: 1px solid #555;
box-shadow: none;
}
.submit.disable:active {
box-shadow: none;
}