-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (54 loc) · 848 Bytes
/
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
a.info {
position: relative;
color: blue;
text-decoration: none;
}
a.info span {
display: none;
}
a.info:hover {
background: none;
z-index: 500;
}
a.info:hover span {
display: inline;
position: absolute;
top: 30px;
left: 20px;
background: #B9A78F;
color:black;
padding: 3px;
border: 2px solid #B9A78F;
}
a.info img{
vertical-align: middle;
}
a.info:hover span div {
margin-left: 3px;
margin-right: 3px;
}
a.info:hover span div.title {
font-size: 20px;
color: white;
text-align: center;
}
a.info:hover span div.weight {
text-align: right;
margin-right: 12px;
}
a.info:hover span div.main_attribute {
font-size: 20px;
color: white;
}
/* Tableau */
table {
border-collapse: collapse;
}
th, td, tr {
padding-left: 20px;
padding-right: 20px;
}
td {
border-top: 1px solid black;
border-bottom: 1px solid black;
}