47 lines
731 B
CSS
47 lines
731 B
CSS
|
body {
|
||
|
background-color: #1787c2;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
font-family: 'Titillium Web', sans-serif;
|
||
|
}
|
||
|
#aquilenet-title {
|
||
|
color: white;
|
||
|
align-self: center;
|
||
|
font-size: 4em;
|
||
|
margin-top: .3em;
|
||
|
margin-bottom: .5em;
|
||
|
}
|
||
|
#container {
|
||
|
width: 80%;
|
||
|
background-color: #ffd38c;
|
||
|
align-self: center;
|
||
|
padding: 2em;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
padding-bottom: 10em;
|
||
|
}
|
||
|
|
||
|
form {
|
||
|
align-self: center;
|
||
|
}
|
||
|
|
||
|
#main-title {
|
||
|
align-self: center;
|
||
|
margin-bottom: 2em;
|
||
|
}
|
||
|
|
||
|
table,td {
|
||
|
border: 2px solid #333;
|
||
|
border-collapse: collapse;
|
||
|
}
|
||
|
|
||
|
thead, tfoot {
|
||
|
background-color: #333;
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
td {
|
||
|
padding-left: 1em;
|
||
|
padding-right: 1em;
|
||
|
}
|