Difference between revisions of "MediaWiki:Common.css"

From PKC
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: .externalimage-holder { position: relative; } .externalimage-holder img { width: 100%; height: auto; }")
 
Line 7: Line 7:
     width: 100%;
     width: 100%;
     height: auto;
     height: auto;
}
.myDiv {
  border: 10px outset white;
  background-color: lightblue;
  text-align: center;
}
}

Revision as of 11:24, 5 January 2022

/* CSS placed here will be applied to all skins */

.externalimage-holder {
    position: relative;
}
.externalimage-holder img {
    width: 100%;
    height: auto;
}

.myDiv {
  border: 10px outset white;
  background-color: lightblue; 
  text-align: center;
}