Advertisement
Hadi1989

Untitled

Mar 20th, 2019
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.69 KB | None | 0 0
  1. body{
  2.     display: flex;
  3.     justify-content: center;
  4.     align-items: center;
  5.     height: 100vh;
  6. }
  7. .container {
  8.     position: relative;
  9.     overflow: hidden;
  10.     --width: 800px;
  11.     --height: 400px;
  12.     width: var(--width);
  13.     height: var(--height);
  14. }
  15. .image {
  16.     position: absolute;
  17.     height: 100%;
  18.    background: url(../img/jakarta.jpg);
  19.     background-size: var(--width) var(--height);
  20. }
  21. .image:first-child{
  22.     right: 0;
  23.     width: 100%;
  24.     background-position: center left;
  25. }
  26. .image:last-child{
  27.     right: 0;
  28.     width: calc( 100% - var(--x,50%));
  29.     background-position: center right;
  30.     filter: grayscale(100%);
  31.     box-shadow: inset 2px 0 0 #111, -2px 0 0 #111;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement