forked from ExploreBTC/BitcoinGrind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (79 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
/**
* General
*/
body {
background-color: #191919;
}
/**
* Controls
*/
@keyframes ch {
from {
background-color: #FACC2E;
margin-right: 600;
}
to {
background-color: #25313c;
margin-right: 0px;
}
}
.controls {
animation: ch 2s;
animation-fill-mode: forwards;
animation-delay: 0.5s;
}
.logo {
margin: 5px 0 7px 5px;
cursor: pointer;
height: 40px;
}
.title {
font-family: Impact;
font-size: 40px;
color: #cccc99;
margin-left: 55px;
margin-top: -55px;
}
.controls input {
float: right;
cursor: pointer;
color: #25313c;
background-color: #cccc99;
border-color: #cccc99;
border-style: solid;
font-family: Impact;
color: #25313c;
transition: 1s;
}
.controls input:hover {
background-color: #db8658;
}
.controls-jump {
margin: -86px 429px 0 0;
font-size: 30px;
}
.controls-link {
margin: -86px 357px 0 0;
font-size: 30px;
}
.controls-reload {
margin: -86px 250px 0 0;
font-size: 30px;
}
.controls-previous {
margin: -95px 205px 0 0;
font-size: 45px;
}
.controls-next {
margin: -95px 15px 0 0;
font-size: 45px;
}
/**
* Faucet
*/
.faucet-frame {
position: fixed;
margin-top: -31px;
width: 99%;
height: 91%;
}