22 lines
385 B
HTML
22 lines
385 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body {
|
|
background-color: limegreen;
|
|
}
|
|
.A {
|
|
transform: scale(0.01) perspective(1000px);
|
|
transform-origin: 0% 0%;
|
|
filter: grayscale(40%);
|
|
}
|
|
.B {
|
|
background-color: black;
|
|
width: 10000px;
|
|
height: 5000px;
|
|
border-radius: 2000px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div class="A">
|
|
<div class = "B"/>
|
|
</div>
|
|
</body>
|