Changes

1,046 bytes added ,  13:57, 11 September 2018
no edit summary
Line 1: Line 1: −
<!--The following line of code hides the page title-->
+
<html>
{{DISPLAYTITLE:<span style="position: absolute; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px);">{{FULLPAGENAME}}</span>}}
+
<style>
 +
    header,
 +
    footer,
 +
    #mw-head,
 +
    #mw-panel  {
 +
display: none;
 +
}
    
html,
 
html,
Line 7: Line 13:  
         -webkit-animation: fadein .5s;
 
         -webkit-animation: fadein .5s;
 
         animation: fadein .5s;
 
         animation: fadein .5s;
 +
    }
 +
 +
    @keyframes fadein {
 +
        from {
 +
            opacity: 0;
 +
        }
 +
        to {
 +
            opacity: 1;
 +
        }
 +
    }
 +
 +
    @-webkit-keyframes fadein {
 +
        from {
 +
            opacity: 0;
 +
        }
 +
        to {
 +
            opacity: 1;
 +
        }
 
     }
 
     }
   Line 14: Line 38:  
         padding: 0;
 
         padding: 0;
 
     }
 
     }
 +
    
     .navbar-default .navbar-nav>li>a:visited {
 
     .navbar-default .navbar-nav>li>a:visited {
 
         color: #262860;
 
         color: #262860;
 
     }
 
     }
 +
 +
body {
 +
        overflow-y: hidden;
 +
        background-color: #f8f8f8;
 +
}
 +
 +
.super-body {
 +
        position: fixed;
 +
        overflow-y: scroll;
 +
        overflow-x: hidden;
 +
        -ms-overflow-x: hidden;
 +
        display: block;
 +
        top: 0;
 +
        left: 0;
 +
        right: 0;
 +
        bottom: 0;
 +
        z-index: 420;
 +
        background-color: #fff;
 +
        -webkit-transition: all .5s ease-in;
 +
        transition: all .5s ease-in;
 +
        font-family: 'Roboto', sans-serif;
 +
        font-size: 14px;
 +
    }
 +
 +
div#mw-head {
 +
        position: absolute;
 +
        top: 145px;
 +
        right: 0;
 +
        width: 100%;
 +
        display: none;
 +
    }
 +
 +
    div#mw-panel {
 +
        font-size: inherit;
 +
        position: absolute;
 +
        top: 160px;
 +
        padding-top: 1em;
 +
        width: 10em;
 +
        left: 0;
 +
        display: none;
 +
    }
 +
 +
#footer {
 +
        display: none;
 +
    }
 +
    
.btn-xl {
 
.btn-xl {
Line 361: Line 432:  
   color: #ecb807 !important;
 
   color: #ecb807 !important;
 
}
 
}
 +
 +
</style>
 +
 +
</html>
166

edits