31 lines
525 B
CSS
31 lines
525 B
CSS
|
#menu
|
||
|
{list-style-type: none;
|
||
|
width: 100%;
|
||
|
padding: 0px;
|
||
|
box-shadow: 0px 0px 5px black;
|
||
|
text-align: center;
|
||
|
transform: rotate(-0.5deg);
|
||
|
background-color: #FF8800;}
|
||
|
|
||
|
#menu li
|
||
|
{display: inline-block;
|
||
|
margin: 0.5em;
|
||
|
font-size: 0.9em;
|
||
|
margin-left: 0.5em;
|
||
|
margin-right: 0.5em;}
|
||
|
|
||
|
#menu a
|
||
|
{
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 520px) {
|
||
|
#menu
|
||
|
{font-size: 0.8em;}
|
||
|
|
||
|
#menu li
|
||
|
{margin-left: 0.33em;
|
||
|
margin-right: 0.33em;}
|
||
|
}
|
||
|
|