feat: moved css to html file, updated readme

This commit is contained in:
Daniel Ledda
2022-05-28 13:23:25 +02:00
parent e5e0c47f68
commit db4a332990
8 changed files with 535 additions and 48 deletions

View File

@@ -3,6 +3,20 @@
<head>
<meta charset="UTF-8">
<title>Ladder Test Playground</title>
<style>
.rung {
width: 30px;
height: 30px;
border: solid black;
border-width: 0 2px 2px 2px;
}
.rung:last-of-type {
border-width: 0 2px 0 2px;
}
.rung:first-of-type {
border-width: 0 2px 2px 2px;
}
</style>
</head>
<body>
<div id="app"></div>