19 lines
289 B
CSS
19 lines
289 B
CSS
|
body {
|
||
|
background-color: rgba(131, 143, 197, 0.986);
|
||
|
}
|
||
|
.labelcontainer {
|
||
|
display: flex;
|
||
|
}
|
||
|
label {
|
||
|
display: block;
|
||
|
color: rgb(28, 17, 85);
|
||
|
min-width: 20rem;
|
||
|
font-size: 1.5rem;
|
||
|
}
|
||
|
input {
|
||
|
width: 10rem;
|
||
|
}
|
||
|
p {
|
||
|
color: rgb(28, 17, 85);
|
||
|
font-size: 1.5rem;
|
||
|
}
|