15 lines
221 B
CSS
15 lines
221 B
CSS
|
body {
|
||
|
background-color: lightgreen;
|
||
|
}
|
||
|
|
||
|
input[type="number"] {
|
||
|
background-color: yellow;
|
||
|
}
|
||
|
|
||
|
input[type="submit"] {
|
||
|
background-color: deepskyblue;
|
||
|
}
|
||
|
|
||
|
input[type="reset"] {
|
||
|
background-color: palevioletred;
|
||
|
}
|