Files
Grinch-AP/WebHostLib/static/styles/islandFooter.css
kindasneaki 03cf525b2c Webhost: Add dropdown menus (#1553)
* Change archipelago mod download page

* Docs: change connecting to archipelago in RoR2 setup guide

* dropdowns for links

* change some relative sizing

* change links and reorder links

* dropdowns for links

* change some relative sizing

* change links and reorder links

* mobile view was showing on desktop early

* add in missing relative font sizes

* clean up and add a temp downdown img

* move links around

* added cloud border

* move arrow to the left side
2023-03-23 22:11:39 -07:00

48 lines
980 B
CSS

#island-footer{
background: url('../static/backgrounds/footer/footer-0001.png') repeat-x bottom;
background-size: auto 90px;
display: flex;
flex-direction: row;
justify-content: space-between;
width: calc(100% - 0.5rem);
padding-left: 0.5rem;
padding-top: 80px;
color: #dfedc6
}
#island-footer #links a{
padding-right: 0.5rem;
padding-left: 0.5rem;
color: #dfedc6;
}
@media all and (max-width: 900px) {
#island-footer{
font-size: 17px;
font-size: 2vw;
}
}
@media all and (max-width: 768px) {
#island-footer{
font-size: 15px;
font-size: 2vw;
}
}
@media all and (max-width: 650px) {
#island-footer{
font-size: 13px;
font-size: 2vw;
}
}
@media all and (max-width: 580px) {
#island-footer{
font-size: 11px;
font-size: 2vw;
}
}
@media all and (max-width: 512px) {
#island-footer{
font-size: 9px;
font-size: 2vw;
}
}