mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 10:48:39 +09:00
23 lines
338 B
HTML
23 lines
338 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
#outerDiv {
|
|
width: 500px;
|
|
height: 500px;
|
|
background: lime;
|
|
position: absolute;
|
|
}
|
|
|
|
#middleBlur {
|
|
width: 300px;
|
|
height: 300px;
|
|
margin-left: 100px;
|
|
margin-top: 100px;
|
|
background: black;
|
|
box-shadow: inset 0 0 20px 100px lime;
|
|
}
|
|
</style>
|
|
|
|
<div id="outerDiv">
|
|
<div id="middleBlur">
|
|
</div>
|
|
</div>
|