-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhover-zoom-module.css
53 lines (53 loc) · 1.05 KB
/
hover-zoom-module.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
#hover-zoom-module {
position : relative;
display : inline-block;
width : 750px;
height : 400px;
background-color : white;
border : 1px solid #282828;
}
#small-image-container {
position : absolute;
top : 50px;
left : 50px;
width : 300px;
height : 300px;
}
#small-image-container:hover {
cursor : url(square-cursor.png) 30 30, auto;
}
#small-image {
position : absolute;
top : 0;
left : 0;
}
#text-container {
position : absolute;
top : 50px;
right : 50px;
width : 300px;
height : 300px;
display : flex;
align-items : center;
justify-content : center;
flex-direction : column;
}
.big-text {
font-size : 24px;
line-height : 28px;
font-weight : bold;
}
#zoomed-image-container {
position : absolute;
top : 50px;
right : 50px;
width : 300px;
height : 300px;
overflow : hidden;
opacity : 0;
}
#large-image {
position : absolute;
top : 0;
left : 0;
}