MediaWiki:Common.css: Difference between revisions

From FOnline: Reloaded Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 38: Line 38:
   /text-transform: uppercase;
   /text-transform: uppercase;
   /color: #fff;
   /color: #fff;
   animation: 90s credits linear 4;
   animation: 60s credits linear 3;
}
}



Revision as of 06:00, 25 December 2020

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

/* CSS Movie Credits
 * 
 * Original version found at: http://codepen.io/reejosamuel/pen/ALjcr
 * current version crafted together by [[User:Christharp]] to work inside Mediawiki..
 */

.sealoff {
postion:relative;
width:100%;
height:600px;
overflow:hidden;
}

@import "compass/css3";

@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 50%;
}

.wrapper {
  position: relative;
  top: 100%;
  left: 50%;
  width: 600px;
  margin-left: -300px;
  font: 300 30px/1 'Open Sans Condensed', sans-serif;
  text-align: center;
  /text-transform: uppercase;
  /color: #fff;
  animation: 60s credits linear 3;
}

.game {
  font-weight: bold
  margin-bottom: 50px;
  font-size: 50px;
}

.desc {
  margin-bottom: 50px;
  font-size: 14px;
}

.name {
  margin-bottom: 5px;
  font-size: 18px;
}

.job {
  margin-bottom: 10px;
  font-size: 35px;
}

@keyframes credits {
  0% {
    top: 100%;
  }
  100% {
    top: -200%;
  }
}