MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(Created page with "→CSS placed here will be applied to all skins: } #test{ height:500px !important; padding:5px; border: 1px black solid; } #button{ border:1px black solid; borde...") |
No edit summary |
||
| (9 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
#test{ | #test{ | ||
height:500px !important; | height:500px !important; | ||
| Line 9: | Line 9: | ||
#button{ | #button{ | ||
border: 1px black solid; | |||
width: 200px; | |||
height: 30px; | |||
text-align: center; | |||
line-height: 30px; | |||
margin-left: auto; | |||
margin-right: auto; | |||
margin-bottom: 15px; | |||
} | |||
#canvasnetwork{} | |||
#galery{ | |||
display: flex; | |||
flex-wrap: wrap; | |||
flex-flow: wrap; | |||
justify-content: space-around; | |||
align-items: center; | |||
} | |||
.galleryimg{ | |||
max-height:200px; | |||
max-width:200px; | |||
} | |||
#homeflex{ | |||
display: flex; | |||
flex-wrap: wrap; | |||
flex-flow: wrap; | |||
justify-content: space-around; | |||
align-items: center; | |||
border: dotted 1px lightgray; | |||
background: #f7f7f7; | |||
padding: 5px; | |||
padding-bottom: 15px; | |||
margin-top: 20px; | |||
margin-bottom: -15px; | |||
} | |||
# | #subflex{ | ||
display: flex; | |||
flex-wrap: wrap; | |||
flex-flow: wrap; | |||
justify-content: space-around; | |||
align-items: center; | |||
padding: 5px; | |||
padding-bottom: 15px; | |||
margin-top: 20px; | |||
margin-bottom: -15px; | |||
} | } | ||
Latest revision as of 14:24, 21 November 2019
/* CSS placed here will be applied to all skins */
#test{
height:500px !important;
padding:5px;
border: 1px black solid;
}
#button{
border: 1px black solid;
width: 200px;
height: 30px;
text-align: center;
line-height: 30px;
margin-left: auto;
margin-right: auto;
margin-bottom: 15px;
}
#canvasnetwork{}
#galery{
display: flex;
flex-wrap: wrap;
flex-flow: wrap;
justify-content: space-around;
align-items: center;
}
.galleryimg{
max-height:200px;
max-width:200px;
}
#homeflex{
display: flex;
flex-wrap: wrap;
flex-flow: wrap;
justify-content: space-around;
align-items: center;
border: dotted 1px lightgray;
background: #f7f7f7;
padding: 5px;
padding-bottom: 15px;
margin-top: 20px;
margin-bottom: -15px;
}
#subflex{
display: flex;
flex-wrap: wrap;
flex-flow: wrap;
justify-content: space-around;
align-items: center;
padding: 5px;
padding-bottom: 15px;
margin-top: 20px;
margin-bottom: -15px;
}