Spaces:
Runtime error
Runtime error
File size: 817 Bytes
ad78747 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
label,
textarea{
font-size: 0.8rem;
letter-spacing: 1px;
}
p {
font-size: 1rem;
letter-spacing: 1px;
}
textarea {
padding: 10px;
width: 100%;
height: 90%;
line-height: 1.5;
border-radius: 5px;
border: 1px solid #ccc;
box-shadow: 1px 1px 1px #999;
resize : none;
box-sizing:border-box;
}
label {
display: block;
margin-bottom: 10px;
}
h1 {
color: rgb(61, 99, 143);
text-align: center;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 15%;
}
select {
font-size: 0.9rem;
padding: 2px 5px;
}
div {
display: block;
margin-top: 30px;
}
.parent {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
width: 100%;
height: 300px;
}
.child {
margin: 10px;
}
|