-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.css
93 lines (82 loc) · 1.7 KB
/
test.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
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
/* Click the image one by one to see the different layout */
/* Owl Carousel */
.owl-prev {
background: url('https://res.cloudinary.com/milairagny/image/upload/v1487938188/left-arrow_rlxamy.png') left center no-repeat;
height: 54px;
position: absolute;
top: 50%;
width: 27px;
z-index: 1000;
left: 2%;
cursor: pointer;
color: transparent;
margin-top: -27px;
}
.owl-next {
background: url('https://res.cloudinary.com/milairagny/image/upload/v1487938220/right-arrow_zwe9sf.png') right center no-repeat;
height: 54px;
position: absolute;
top: 50%;
width: 27px;
z-index: 1000;
right: 2%;
cursor: pointer;
color: transparent;
margin-top: -27px;
}
.owl-prev:hover,
.owl-next:hover {
opacity: 0.5;
}
/* Owl Carousel */
/* Popup Text */
.white-popup-block {
background: #FFF;
padding: 20px 30px;
text-align: left;
max-width: 650px;
margin: 40px auto;
position: relative;
}
.popuptext {
display: table;
}
.popuptext p {
margin-bottom: 10px;
}
.popuptext span {
font-weight: bold;
float: right;
}
/* Popup Text */
/* Icon CSS */
.item {
position: relative;
}
.item i {
display: none;
font-size: 4rem;
color: #FFF;
opacity: 1;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
}
.item a {
display: block;
width: 100%;
}
.item a:hover:before {
content: "";
background: rgba(0, 0, 0, 0.5);
position: absolute;
height: 100%;
width: 100%;
z-index: 1;
}
.item a:hover i {
display: block;
z-index: 2;
}