1
0

add script for display result from server

This commit is contained in:
2024-04-11 08:53:35 +02:00
parent d665bdbf5e
commit fd5344a896
4 changed files with 10431 additions and 8 deletions

View File

@@ -1,5 +1,28 @@
body {
div[id="op1"] {
background-color: lightskyblue;
margin: 5px;
padding: 10px;
}
div[id="op2"] {
background-color: lightgreen;
margin: 5px;
padding: 10px;
}
div[id="but"] {
background-color: palevioletred;
margin: 5px;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: center;
}
div[id="res"] {
background-color: yellow;
margin: 5px;
padding: 10px;
}
input[type="number"] {
@@ -12,4 +35,10 @@ input[type="submit"] {
input[type="reset"] {
background-color: palevioletred;
}
.inline-divs {
display: flex;
flex-direction: row;
align-items: stretch;
}