Difference between revisions of "User:RJackson/vector.css"

From Team Fortress Wiki
Jump to: navigation, search
m (Fackit mousss)
(trying out this madness)
Line 38: Line 38:
 
   cursor:pointer;
 
   cursor:pointer;
 
   cursor:hand;
 
   cursor:hand;
 +
}
 +
 +
body {
 +
    -webkit-filter: invert(100%);
 +
    filter: invert(100%);
 
}
 
}

Revision as of 15:11, 17 September 2020


/* 3D STUFF */

#2d-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.viewer-2d {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#switch-to-3d {
  position: relative;
  top: 0;
  left: 0;
  background:url("/w/images/6/65/2D_icon.png");
  width:63px;
  height:42px;
  z-index:999;
  cursor:pointer;
  cursor:hand;
}

#switch-to-2d {
  position: absolute;
  top: 0;
  left: 0;
  background:url("/w/images/7/7e/3D_icon.png");
  width:63px;
  height:42px;
  z-index:999;
  cursor:pointer;
  cursor:hand;
}

body {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}