SummaryProject / static /styles.css
EveSa's picture
Initial Commit
ad78747
raw
history blame
No virus
817 Bytes
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;
}