.main
.img
View Compiled
$background_color: #000;
.img {
display:block;
position: relative;
width: 260px;
height: 200px;
background-color: #000;
border-radius: 2px;
box-shadow: 0 0 0 1px rgba(218,50,204,0.5);
background-size:cover;
background-repeat:none;
background-position:center;
background-image:
linear-gradient(2rad, rgb(19,40,87), rgba(218,50,204,0.15)),
url("https://images.unsplash.com/photo-1433086981895-12ca61d33d40?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=934&q=80");
&:before {
content:'';
z-index: -1;
display:block;
position:absolute;
top:-4px;
right:-4px;
bottom:-4px;
left:-4px;
border-radius: 4px;
background: linear-gradient(2rad, rgb(19,40,87), rgb(218,50,204));
}
}
//
// Page Default Styles
//
* {
margin: 0;
padding: 0;
border: 0;
outline: none;
box-sizing: border-box;
}
html,
body {
display: block;
position: fixed;
height: 100vh;
width: 100vw;
background-color: $background_color;
background: linear-gradient(#1F1F21, $background_color);
}
.main {
display: flex;
height: 100vh;
width: 100vw;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
align-items: center;
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.