Advertisement
Guest User

Untitled

a guest
Jun 6th, 2016
422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.20 KB | None | 0 0
  1. //Put this in it's own file
  2. <style>
  3.       @font-face{
  4.       font-family: "CYBERTOOTH";
  5.       src: url('/styles/templates/Custom1/fonts/CYBERTOOTH.ttf');
  6.       }
  7.       @font-face{
  8.       font-family: "Roboto";
  9.       src: url('/styles/templates/Custom1/fonts/Roboto-Light.ttf');
  10.       }
  11.       .banner {
  12.         height: 75vh;
  13.         background-attachment: fixed;
  14.         background-position: center;
  15.         background-image: url("core/assets/img/background-1920x1080.jpg");
  16.         background-size: 100% 100%;
  17.       }
  18.       .textbanner {
  19.         font-family: "CYBERTOOTH";
  20.         font-size: 13vh;
  21.         padding-top:20vh;
  22.         color: white;
  23.         text-align: center;
  24. }
  25.        @media (max-width: 600px) {
  26.         .textbanner {
  27.         font-family: "CYBERTOOTH";
  28.         font-size: 10vh;
  29.         padding-top:20vh;
  30.       }
  31.       .text {
  32.         color: white;
  33.         font-family: "Roboto";
  34.         font-size: 6vh;
  35. }
  36. </style>
  37. //Replace Jumbotron stuff with banner and textbanner class (Also text class for other lines)
  38.   <div class="banner">
  39.     <div class="textbanner">{$SITENAME}</h1>
  40.         <h2 class="text">{$PLAYERS_ONLINE}</h2>
  41.         <h2 class="text">{$CONNECT_WITH}</h2>
  42.   </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement