-
Notifications
You must be signed in to change notification settings - Fork 10
/
style.css
54 lines (46 loc) · 1.12 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
/* Common styles */
body {
font-family: sans-serif;
text-align:center;
background-color:#FFFF80;
}
/* Table with data and with grid */
.data_table {
border: 1px solid gray;
border-collapse: collapse;
}
.data_table tr, .data_table td, .data_table th {
border: 1px solid gray;
padding: 0.5px 1em;
}
/* Popup QR from https://www.w3schools.com/css/css_tooltip.asp */
.url_with_qr_container {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
/* Tooltip text */
.url_with_qr_container .qr {
visibility: hidden;
border: 1px solid #888;
background-color: white;
text-align: center;
left: 50%;
padding: 1em;
border-radius: 6px;
position: absolute;
z-index: 1;
}
/* Show the tooltip text when you mouse over the tooltip container */
.url_with_qr_container:hover .qr {
visibility: visible;
}
/* Coinimp miner style */
.coinimp_miner {
background: #FFFF00;
border: #AAAAAA;
color: black;
}
.coinimp_miner td {
padding: 0.1em 1em;
}