mirror of
https://github.com/G2-Games/website.git
synced 2025-04-19 09:52:53 -05:00
18 lines
258 B
HTML
18 lines
258 B
HTML
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
img {
|
|
image-rendering: crisp-edges;
|
|
image-rendering: pixelated;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
height: 80%;
|
|
}
|
|
</style>
|
|
<body>
|
|
<img src="badapple.gif">
|
|
</body>
|