MediaWiki:Mobile.css: Difference between revisions

From Quantum Protocol Zoo
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will affect users of the mobile site: #test{ height:500px; }")
Tags: Mobile edit Mobile web edit
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:


#test{
#test{
     height:500px;
     height:500px !important;
}
 
#galery{
    display: flex;
    flex-wrap: wrap;
    flex-flow: wrap;
    justify-content: space-around;
    align-items: center;
}
 
.galleryimg{
    max-height:200px;
    max-width:200px;
}
}

Latest revision as of 15:26, 16 October 2019

/* CSS placed here will affect users of the mobile site */

#test{
    height:500px !important;
}

#galery{
    display: flex;
    flex-wrap: wrap;
    flex-flow: wrap;
    justify-content: space-around;
    align-items: center;
}

.galleryimg{
    max-height:200px;
    max-width:200px;
}