Difference between revisions of "MediaWiki:Common.css"

From ProgZoo
Jump to navigation Jump to search
Line 1: Line 1:
.qucontainer{
  position:relative;
}
.yourscore{
.yourscore{
   position:relative;
   position:absolute;
   right:0;
   right:0;
   top:0;
   top:0;
Line 11: Line 14:
}
}
.yourscore.normal{
.yourscore.normal{
  position:relative;
   right:0;
   right:0;
   top:0;
   top:0;
Line 20: Line 22:
}
}
.yourscore.normal.gone{
.yourscore.normal.gone{
  position:relative;
   right:0;
   right:0;
   top:0;
   top:0;

Revision as of 13:37, 12 August 2021

.qucontainer{
  position:relative;
}
.yourscore{
  position:absolute;
  right:0;
  top:0;
  border:solid;
  background:yellow;
  padding: 2ex;
  transform: translate(0px, 100px);
  z-index: 5;
  transition: all .8s;
}
.yourscore.normal{
  right:0;
  top:0;
  border:solid;
  background:white;
  padding: 2ex;
  transform: translate(0px, 0px);
}
.yourscore.normal.gone{
  right:0;
  top:0;
  border:solid;
  background:white;
  height: 0px;
  overflow: hidden;
  padding: 0;
  border: none;
}
div.thumb{
  float:none;
}
.codetip{
  position:absolute;
}
iframe{
  height:30ex;
}
.qu img{
  background-color:silver;
}
.lint-marker-warning, .lint-message-warning {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=);
    background-repeat-y: no-repeat;
    background-position: center;
}
.lint-marker {
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    width: 16px;
    vertical-align: middle;
    position: relative;
}
#shellbody, #shelljs{
  display:none;
}
.qu pre.usr, .qu pre.ans{
  display:none;
}
.inputs, .outputs{
  display: inline-block;
  vertical-align:top;
  margin: 1ex;
}
.inputs{
  width:60ex;
}
.cm-container{
  width:80ex;
  border:solid thin black;
}
textarea.usr{
  width:50ex;
  height:20ex;
}