24 lines
356 B
CSS
24 lines
356 B
CSS
#pastevents{
|
|
position: fixed;
|
|
top: -1em;
|
|
right: 3em;
|
|
height: 14em;
|
|
}
|
|
|
|
#upcomingevents{
|
|
position: fixed;
|
|
top: -2.5em;
|
|
right: 6em;
|
|
height: 14em;
|
|
}
|
|
#pastevents:hover{
|
|
z-index: 1;
|
|
}
|
|
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
|
|
#upcomingevents,#pastevents {
|
|
position:absolute;
|
|
width: 15%;
|
|
height: auto;
|
|
}
|
|
}
|