forked from holtzy/The-Python-Graph-Gallery
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchartImage.css
More file actions
49 lines (44 loc) · 909 Bytes
/
chartImage.css
File metadata and controls
49 lines (44 loc) · 909 Bytes
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
.chartImageContainer {
position: relative;
}
.chartImageImg {
display: block;
width: 100%;
height: 100%;
cursor: pointer;
border: solid;
border-radius: 3px;
border-width: 1px;
border-color: var(--medium-grey);
margin-bottom: 10px;
}
.chartImageOverlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
opacity: 0;
transition: .05s ease;
background-color: var(--python-gallery);
border-radius: 3px;
}
.chartImageContainer:hover .chartImageOverlay {
opacity: .7;
}
.chartImageOverlayText {
color: white;
font-size: 17px;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
}
.chartImageCaption {
text-align: center;
}