26 lines
332 B
CSS
26 lines
332 B
CSS
.menuItem {
|
|
text-align: center;
|
|
}
|
|
|
|
#menu ul {
|
|
padding-left: 0;
|
|
margin: .5%;
|
|
}
|
|
|
|
#menu li {
|
|
display: inline-block;
|
|
width: 16%;
|
|
background: #F00;
|
|
}
|
|
|
|
#menu a {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
.pict {
|
|
width: 70%;
|
|
background: rgba(0, 255, 0, .5);
|
|
margin: 5px auto;
|
|
padding: 5px 0;
|
|
} |