spotlight-frontend 4.6.0 → 4.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -42,7 +42,7 @@ $image-overlay-max-height: 300px;
|
|
|
42
42
|
margin-bottom: $spacer;
|
|
43
43
|
|
|
44
44
|
.nav-link {
|
|
45
|
-
margin-bottom: $spacer * .75;
|
|
45
|
+
margin-bottom: $spacer * 0.75;
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
|
|
@@ -61,8 +61,13 @@ $image-overlay-max-height: 300px;
|
|
|
61
61
|
overflow: hidden;
|
|
62
62
|
position: relative;
|
|
63
63
|
|
|
64
|
-
img {
|
|
64
|
+
.img-responsive {
|
|
65
|
+
transition: all 0.5s ease;
|
|
65
66
|
width: 100%;
|
|
67
|
+
|
|
68
|
+
&:hover {
|
|
69
|
+
filter: brightness(70%);
|
|
70
|
+
}
|
|
66
71
|
}
|
|
67
72
|
}
|
|
68
73
|
|
|
@@ -71,7 +76,11 @@ $image-overlay-max-height: 300px;
|
|
|
71
76
|
bottom: 0;
|
|
72
77
|
left: 0;
|
|
73
78
|
width: 100%;
|
|
74
|
-
background: linear-gradient(
|
|
79
|
+
background: linear-gradient(
|
|
80
|
+
0deg,
|
|
81
|
+
rgba(46, 45, 41, 0.7) 70%,
|
|
82
|
+
rgba(46, 45, 41, 0) 100%
|
|
83
|
+
);
|
|
75
84
|
color: $white;
|
|
76
85
|
padding: 50px 20px 20px 20px;
|
|
77
86
|
text-align: center;
|
|
@@ -93,10 +102,6 @@ $image-overlay-max-height: 300px;
|
|
|
93
102
|
text-transform: uppercase;
|
|
94
103
|
}
|
|
95
104
|
}
|
|
96
|
-
|
|
97
|
-
&:hover {
|
|
98
|
-
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
|
|
99
|
-
}
|
|
100
105
|
}
|
|
101
106
|
|
|
102
107
|
@media screen and (max-width: breakpoint-max("sm")) {
|
|
@@ -106,19 +111,29 @@ $image-overlay-max-height: 300px;
|
|
|
106
111
|
max-height: $image-overlay-max-height;
|
|
107
112
|
max-width: 350px;
|
|
108
113
|
}
|
|
109
|
-
.text-overlay .browse-category-title {
|
|
114
|
+
.text-overlay .browse-category-title {
|
|
115
|
+
font-size: $h3-font-size;
|
|
116
|
+
}
|
|
110
117
|
}
|
|
111
118
|
@media screen and (min-width: breakpoint-min("sm")) and (max-width: breakpoint-max("md")) {
|
|
112
119
|
$image-overlay-max-height: 240px;
|
|
113
|
-
.image-overlay {
|
|
120
|
+
.image-overlay {
|
|
121
|
+
max-height: $image-overlay-max-height;
|
|
122
|
+
}
|
|
114
123
|
}
|
|
115
124
|
@media screen and (min-width: breakpoint-min("md")) and (max-width: breakpoint-max("lg")) {
|
|
116
125
|
$image-overlay-max-height: 250px;
|
|
117
|
-
.text-overlay .browse-category-title {
|
|
118
|
-
|
|
126
|
+
.text-overlay .browse-category-title {
|
|
127
|
+
font-size: $h4-font-size;
|
|
128
|
+
}
|
|
129
|
+
.image-overlay {
|
|
130
|
+
max-height: $image-overlay-max-height;
|
|
131
|
+
}
|
|
119
132
|
}
|
|
120
133
|
@media screen and (min-width: breakpoint-min("lg")) {
|
|
121
|
-
.image-overlay {
|
|
134
|
+
.image-overlay {
|
|
135
|
+
max-height: $image-overlay-max-height;
|
|
136
|
+
}
|
|
122
137
|
}
|
|
123
138
|
}
|
|
124
139
|
|