Files

36 lines
388 B
CSS
Raw Permalink Normal View History

2025-03-16 22:57:23 -03:00
body, html {
2025-03-16 00:25:09 -03:00
margin: 0;
font-family: sans-serif;
2025-03-16 22:57:23 -03:00
background-color: lightblue;
}
.content {
margin: 0 auto;
width: 400px;
}
table, td, th {
border: 1px solid #aaa;
}
table {
border-collapse: collapse;
width: 100%;
}
th {
height: 30px;
}
td {
text-align: center;
padding: 5px;
}
.form {
margin-top: 20px;
}
#content {
width: 70%;
2025-03-16 00:25:09 -03:00
}