1
0
This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
SDi-HTML-Exercise/styles.css

44 lines
698 B
CSS
Raw Permalink Normal View History

div[id="op1"] {
background-color: lightskyblue;
margin: 5px;
padding: 10px;
}
div[id="op2"] {
2024-04-05 13:28:35 +00:00
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;
2024-04-05 13:28:35 +00:00
}
input[type="number"] {
background-color: yellow;
}
input[type="submit"] {
background-color: deepskyblue;
}
input[type="reset"] {
background-color: palevioletred;
}
.inline-divs {
display: flex;
flex-direction: row;
align-items: stretch;
2024-04-05 13:28:35 +00:00
}