mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
c83ae729d2
This makes the game carousel work on https://null.com/ :^)
17 lines
No EOL
354 B
HTML
17 lines
No EOL
354 B
HTML
<!DOCTYPE html><style>
|
|
* { border: 2px solid black; }
|
|
body { width: 600px; }
|
|
div {
|
|
width: 200px;
|
|
position: relative;
|
|
float: left;
|
|
}
|
|
.athena {
|
|
background: green;
|
|
top: 4px;
|
|
left: -200px;
|
|
}
|
|
.exekiller {
|
|
background: red;
|
|
}
|
|
</style><body><div class="exekiller">exekiller</div><div class="athena">athena</div></body> |