54 lines
790 B
CSS
54 lines
790 B
CSS
* {
|
|
font-family: Cambria;
|
|
text-align: center;
|
|
}
|
|
|
|
header, footer {
|
|
background-color: rgb(120, 0, 46);
|
|
color: white;
|
|
padding: 5px;
|
|
font-size: 150%;
|
|
clear: both;
|
|
}
|
|
|
|
nav {
|
|
background-color: rgb(173, 20, 87);
|
|
text-align: center;
|
|
}
|
|
|
|
#lewy {
|
|
background-color: snow;
|
|
color: olivedrab;
|
|
width: 60%;
|
|
height: 322px;
|
|
text-align: center;
|
|
float: left;
|
|
}
|
|
|
|
#prawy {
|
|
background-color: rgb(173, 20, 87);
|
|
width: 40%;
|
|
height: 322px;
|
|
float: left;
|
|
}
|
|
|
|
#samochod {
|
|
margin: 40px;
|
|
padding: 10px;
|
|
}
|
|
|
|
#samochod:hover {
|
|
border: 1px dotted yellowgreen;
|
|
}
|
|
|
|
a {
|
|
padding: 0 50px;
|
|
color: yellowgreen;
|
|
}
|
|
|
|
table, td {
|
|
border: solid 1px olivedrab;
|
|
}
|
|
table {
|
|
width: 90%;
|
|
} |