mirror of
https://github.com/robertorincos/LabEngSW.git
synced 2026-01-15 17:32:56 -03:00
36 lines
388 B
CSS
36 lines
388 B
CSS
body, html {
|
|
margin: 0;
|
|
font-family: sans-serif;
|
|
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%;
|
|
} |