mirror of
https://github.com/kremalicious/portfolio.git
synced 2025-01-05 11:25:00 +01:00
project image style fixes
This commit is contained in:
parent
0f7b4941d3
commit
d2dba49158
@ -6,8 +6,7 @@ import styles from './ProjectImage.module.scss'
|
|||||||
|
|
||||||
const ProjectImage = ({ fluid, alt }) => (
|
const ProjectImage = ({ fluid, alt }) => (
|
||||||
<Img
|
<Img
|
||||||
className={styles.project__image}
|
className={styles.projectImage}
|
||||||
outerWrapperClassName={styles.project__imagewrap}
|
|
||||||
backgroundColor="#6b7f88"
|
backgroundColor="#6b7f88"
|
||||||
fluid={fluid}
|
fluid={fluid}
|
||||||
alt={alt}
|
alt={alt}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
@import 'variables';
|
@import 'variables';
|
||||||
|
|
||||||
.project__imagewrap {
|
.projectImage {
|
||||||
max-height: 100vh;
|
max-height: 100vh;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
@ -18,9 +18,7 @@
|
|||||||
box-shadow: 0 3px 5px rgba(darken($brand-main, 20%), .15),
|
box-shadow: 0 3px 5px rgba(darken($brand-main, 20%), .15),
|
||||||
0 5px 16px rgba(darken($brand-main, 20%), .15);
|
0 5px 16px rgba(darken($brand-main, 20%), .15);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.project__image {
|
|
||||||
img {
|
img {
|
||||||
max-height: 100vh;
|
max-height: 100vh;
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -11,6 +11,21 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: $font-size-h4;
|
||||||
|
opacity: 0;
|
||||||
|
position: absolute;
|
||||||
|
top: 10%;
|
||||||
|
left: 0;
|
||||||
|
margin: 0;
|
||||||
|
z-index: 2;
|
||||||
|
padding: $spacer / 3 $spacer;
|
||||||
|
background: rgba($brand-cyan, .9);
|
||||||
|
color: #fff;
|
||||||
|
transform: translate3d(0, -2rem, 0);
|
||||||
|
transition: transform .15s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
.project {
|
.project {
|
||||||
flex: 0 0 calc(50% - #{$spacer});
|
flex: 0 0 calc(50% - #{$spacer});
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -39,7 +54,7 @@
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
transition: background .2s ease-out;
|
transition: background .15s ease-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
@ -47,14 +62,11 @@
|
|||||||
&::after {
|
&::after {
|
||||||
background: rgba($brand-cyan, .05);
|
background: rgba($brand-cyan, .05);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translate3d(0, 0, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
|
||||||
opacity: 0;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user