-
Notifications
You must be signed in to change notification settings - Fork 1
/
faucet.css
83 lines (69 loc) · 1.59 KB
/
faucet.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
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro);
html {
font-family: "Source Sans Pro" sans-serif;
font-size: 18px;
margin: 20px;
color: white;
background: #303647;
background: -moz-radial-gradient(center, circle cover, #454d65 0%, #303647 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #454d65), color-stop(100%, #303647));
background: -webkit-radial-gradient(center, circle cover, #454d65 0%, #303647 100%);
background: -o-radial-gradient(center, circle cover, #454d65 0%, #303647 100%);
background: -ms-radial-gradient(center, circle cover, #454d65 0%, #303647 100%);
background: radial-gradient(center, circle cover, #454d65 0%, #303647 100%);
background-color: #30364B;
}
a, a:visited {
color: white;
}
.asset {
border: 2px solid white;
border-radius: 10px;
padding: 20px;
margin: 10px 0;
display: inline-block;
background-color: white;
color: black;
}
.unconfirmed::before {
content: '(';
}
.unconfirmed::after {
content: ')';
}
.asset input {
margin-top: 10px;
}
.name {
font-size: 1.5rem;
}
#asset-template {
display: none;
}
.asset > div {
padding: 10px;
}
.asset .address {
font-size: 14px;
width: 250px;
word-wrap: break-word;
}
.asset .return-section {
display: none;
}
a.open-return {
color: inherit;
}
#qr-canvas {
width: 100%;
}
@media screen and (min-width: 600px) {
.asset > div {
display: inline-block;
width: 150px;
}
.asset .address {
width: 500px;
font-size: inherit;
}
}