I have small problem with css position with this code.
Unfortunately I need this circle to be on the right side of the page (div) and not in the middle. Thanks for the answers
body{
margin:0;
padding:0;
}
.session-box{
background:#333;
width:100%;
min-height:100vh;
}
.circle{
position: absolute;
top: 0;
left 0;
width: 100%;
height: 100%;
background: -moz-radial-gradient(transparent 200px, rgba(255,255,255,0.6) 200px);
background: -webkit-radial-gradient(transparent 100px , rgba(255,255,255,0.6) 200px ) ;
background: -ms-radial-gradient(transparent 100px, rgba(255,255,255,0.6) 200px);
background: -o-radial-gradient(transparent 100px, rgba(255,255,255,0.6) 200px);
}
<div class="session-box">
<div class="circle"></div>
</div>