MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
(Created page with "<style> #gamep { border: 1px solid black; background-color: lightblue; width: 270px; height: 200px; overflow: auto; } #gamep:hover { background-color: coral; width: 570px; height: 500px; padding: 100px; border-radius: 50px; } </style>")
 
No edit summary
Tag: Manual revert
 
(43 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<style>
.gamep a {
#gamep {
   border: 1px solid white;
   border: 1px solid black;
  border-radius:16px 0px 16px 0px;
   background-color: lightblue;
   font-family:Audiowide;
   width: 270px;
   text-align:left;
   height: 200px;
   vertical-align: middle;
   overflow: auto;
   font-size:22px;
  display:inline;
  padding:0 2em;
  box-shadow: 0px 0px 32px rgba(255, 255, 255, 0.20);
}
}


#gamep:hover {
.gamep a:hover {
   background-color: coral;
   box-shadow: 0px 0px 32px rgba(255, 255, 255, 0.80);
  width: 570px;
  height: 500px;
  padding: 100px;
  border-radius: 50px;
}
}
</style>

Latest revision as of 13:46, 18 December 2022

.gamep a {
  border: 1px solid white;
  border-radius:16px 0px 16px 0px;
  font-family:Audiowide;
  text-align:left;
  vertical-align: middle;
  font-size:22px;
  display:inline;
  padding:0 2em;
  box-shadow: 0px 0px 32px rgba(255, 255, 255, 0.20);
}

.gamep a:hover {
  box-shadow: 0px 0px 32px rgba(255, 255, 255, 0.80);
}