39 lines
536 B
CSS
39 lines
536 B
CSS
body {
|
|
font-family: Helvetica;
|
|
background-color: #EAEAEA;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
}
|
|
|
|
nav, footer {
|
|
background-color: #625B5B;
|
|
color: white;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
nav a {
|
|
font-weight: bold;
|
|
background-color: #EAEAEA;
|
|
color: #625B5B;
|
|
padding: 10px;
|
|
margin: 50px;
|
|
border-radius: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
table {
|
|
border: 1px solid #625B5B;
|
|
width: 60%;
|
|
margin-left: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
main {
|
|
padding: 20px;
|
|
} |