Check out this HTML code:
<head>
<meta charset="UTF-8">
<title>Countdown</title>
<style>
/* CSS goes here */
</style>
</head>
<body>
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
<li>four</li>
<li>five</li>
<li>six</li>
<li>seven</li>
<li>eight</li>
<li>nine</li>
<li>ten</li>
</ul>
</body>
Is it possible to achieve the layout depicted in the image below using just CSS, without making any changes to the HTML? (fonts and colors can be disregarded.)