Skip to content

Instantly share code, notes, and snippets.

@jdbruxelles
Last active July 5, 2022 11:22
Show Gist options
  • Save jdbruxelles/26821e1cd7eaf6f73085c2e47a5449ee to your computer and use it in GitHub Desktop.
Save jdbruxelles/26821e1cd7eaf6f73085c2e47a5449ee to your computer and use it in GitHub Desktop.
Curtain is a CSSBattle challenge : https://cssbattle.dev/play/109
<!DOCTYPE html>
<html>
<head>
<title>Curtain</title>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<style type="text/css">
body {
background: #191919
}
div {
margin-left: 12px;
margin-top: 20px;
min-width: 250px;
min-height: 250px;
}
span {
background: #F6E59C;
display: inline-block;
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 20px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div>
<span></span><span></span><span></span><span></span><br>
<span></span><span></span><span></span><br>
<span></span><span></span><br>
<span></span>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment