Add drafting board

This commit is contained in:
2025-06-18 17:25:51 +02:00
parent f507299c15
commit 125dc820eb
2 changed files with 28 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
* {
font-family: sans-serif;
padding: 0;
margin: 0;
box-sizing: border-box;
}
.container {
@@ -60,3 +63,20 @@ input.form-control {
border-width: 1px;
font-size: 2em;
}
#drafting-board {
background-color: #f5a4d1;
width: 100%;
min-height: 50px;
padding: 20px;
overflow: scroll;
}
#drafting-board-content {
border-color: red;
border-width: 1px;
border-style: solid;
min-width: 1000px;
min-height: 300px;
}