Difference between revisions of "MediaWiki:Mobile.css"

From ZynthianWiki
Jump to navigation Jump to search
Line 24: Line 24:
 
   color: #ffffff;
 
   color: #ffffff;
 
   text-align: right;
 
   text-align: right;
   transition: position 0.5s ease;
+
   transition: all 1s ease-in-out;
 
}
 
}

Revision as of 12:34, 31 July 2024

/* All CSS here will be loaded for users of the mobile site */

div.version_bar {
  position: relative;
  top: 0px;
  padding-top: 1px;
  padding-right: 0.6em;
  border-radius: 0.0em;
  background-color: #000000;
  color: #ffffff;
  text-align: right;
  transition: position 0.5s ease;
}

div.version_bar_fixed {
  position: fixed;
  top: 0px;
  left: 0px
  width: 100%;
  padding-top: 1px;
  padding-right: 0.6em;
  border-radius: 0.0em;
  background-color: #000000;
  color: #ffffff;
  text-align: right;
  transition: all 1s ease-in-out;
}