-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (117 loc) · 2.83 KB
/
style.css
File metadata and controls
123 lines (117 loc) · 2.83 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* Minder active dot */
.active_dot {
height: 15px;
width: 15px;
background-color: #01ff91;
border-radius: 50%;
display: block;
margin-left: auto;
margin-right: auto;
}
/* Minder inactive dot */
.inactive_dot {
height: 15px;
width: 15px;
background-color: #ff1201;
border-radius: 50%;
}
/* footer and header Background */
footer,
header {
background: rgb(255, 180, 18);
background: radial-gradient(circle, rgba(255, 180, 18, 1) 0%, rgba(255, 65, 18, 1) 50%, rgba(243, 18, 145, 1) 100%);
}
/* footer stay please down */
footer {
border-top: solid 1px;
width: 100%;
padding-top: 10px;
position: absolute;
bottom: 0;
left: 0;
text-align: center;
}
/* Spacer style */
.hr {
background: rgb(255, 180, 18);
background: radial-gradient(circle, rgba(255, 180, 18, 1) 0%, rgba(255, 65, 18, 1) 50%, rgba(243, 18, 145, 1) 100%);
height: 1px;
margin-top: 5px;
margin-bottom: 5px;
}
/* User DIV height */
#user {
max-height: 20vh;
overflow: auto;
}
/* User DIV miners */
#miners {
max-height: 50vh;
overflow: auto;
}
/* User DIV statistics */
#statistics {
max-height: 20vh;
overflow: auto;
}
/* Miner Button accordions hover effect */
.miner_hover:hover{
background: rgb(255, 180, 18);
background: radial-gradient(circle, rgba(255, 180, 18, 1) 0%, rgba(255, 65, 18, 1) 50%, rgba(243, 18, 145, 1) 100%);
}
/* Input */
.input{
background-color: #000000;
color:#fffdee;
}
/* Input hover */
.input:hover{
background-color: #121212;
color:#fffdee;
}
/* Spin loader */
#spinner {
display: none;
position: absolute;
left: 50%;
top: 50%;
z-index: 1;
width: 60px;
height: 60px;
margin: -76px 0 0 -76px;
border: 6px solid #121212;
border-radius: 50%;
border-top: 6px solid #ffb412;
-webkit-animation: spin 1s linear infinite;
animation: spin 1s linear infinite;
}
/* Spin loader keyframe 1 */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
/* Spin loader keyframe 2 */
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Add animation to "page content" */
.animate-bottom {
position: relative;
-webkit-animation-name: animatebottom;
-webkit-animation-duration: 1s;
animation-name: animatebottom;
animation-duration: 1s
}
@-webkit-keyframes animatebottom {
from { bottom:-100px; opacity:0 }
to { bottom:0px; opacity:1 }
}
@keyframes animatebottom {
from{ bottom:-100px; opacity:0 }
to{ bottom:0; opacity:1 }
}
/* hide dashboard when loading Webpage */
#dashboard {
display: none;
}