Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<div class="box">
  <div class="b c"></div>
  <div class="b s"></div>
</div>
  
</body>
</html>
 
* {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #505771;
}
.box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; 
}
.b {  
  width: 200px;
  height: 200px;  
}
.box:before,
.box:after{
   content: '';  
  display: block;  
  width: 200px;
  height: 200px; 
  box-shadow: 0px 0px 30px 5px rgba(0,0,0,.75);
  z-index: 1;
  flex-grow: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
}
.b {
  width: 200px;
  height: 200px; 
  background: #eee;
  position: relative;
  z-index: 2;
  flex-grow: 0;
  flex-shrink: 0;
}
.box:before {
  border-radius: 50%;
  transform:translate(-50px, -50px);
}
.c {  
  border-radius: 50%;
  transform:translate(50px, -50px);
  z-index: 2;
}
.box:after {
  transform:translate(50px, 50px);
}
.s {
  transform:translate(-50px, 50px);
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
lime7pro
0viewers