forked from mctrivia/DigiDigger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (89 loc) · 1.37 KB
/
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
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
body {
margin: 0px;
}
h1 {
margin-bottom: 2px;
}
.oddsLink{
cursor: pointer;
color: blue;
}
#closeWindow {
display: none;
}
#top {
position: fixed;
left: 0px;
top: 0px;
right: 0px;
text-align: center;
background-color:#cccccc;
}
#fund {
position: fixed;
left: 0px;
bottom: 0px;
padding: 5px;
}
#fund h3 {
margin-bottom: 0px;
}
#fundAddress{
margin: 10px;
background-color:#ffffff;
}
#closeMenu{
display: none;
width: 100%;
}
#wallet{
background-color:#ff3333;
}
#fundAddress{
cursor: pointer;
}
#search {
position: fixed;
width: 512px;
height: 512px;
cursor: pointer;
}
#buyOddsLink {
padding: 5px;
}
#sprite {
display: none;
}
#shadow {
position: fixed;
padding: 0;
margin: 0;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
display: block;
z-index: 999999;
}
.window {
text-align: center;
margin: 0;
padding: 5px;
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: #ffffff;
z-index: 1000000;
}
#window_loading {
display: block;
font-size: 50px;
}