mock up interface to send/receive data

This commit is contained in:
Lewis Moten
2024-04-30 21:32:12 -04:00
parent c7bc507de9
commit 5cd372d715
3 changed files with 49 additions and 0 deletions

23
style.css Normal file
View File

@@ -0,0 +1,23 @@
body {
background-color: darkolivegreen;
}
.panels {
display: flex
}
.panels > div {
border: 1px solid black;
background-color: darkslategray;
margin: 10px;
padding: 10px;
border-radius: 10px;
color: rgb(75, 185, 75);
}
.panels > div h2 {
background-color: gray;
border-bottom: 4px solid darkolivegreen;
color: black;
}
.panels > div textarea {
background-color: rgb(41, 59, 10);
color: rgb(75, 185, 75);
}