49 lines
591 B
CSS
49 lines
591 B
CSS
|
|
ul{
|
|
list-style: none;
|
|
}
|
|
|
|
li{
|
|
margin: 40px 0px 40px 0px; /* top right bottom left */
|
|
}
|
|
|
|
li:first-child{
|
|
margin-top: 0px;
|
|
}
|
|
|
|
li:last-child{
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.side-bar{
|
|
position: fixed;
|
|
}
|
|
|
|
.width100{
|
|
width: 100%;
|
|
}
|
|
|
|
.mobile-search{
|
|
display: none;
|
|
}
|
|
|
|
.fab-buttons{
|
|
display: none;
|
|
}
|
|
|
|
#audio-player-filler{
|
|
height: 60px;
|
|
background-color: inherit;
|
|
}
|
|
|
|
@media(max-width:800px){
|
|
.mobile-search{
|
|
display: block;
|
|
}
|
|
.fab-buttons{
|
|
display: inline-block;
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
}
|
|
} |