Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <template>
  2.   <div class="guide">
  3.     <section>
  4.       <div class="container">
  5.         <h2 id="zelosguide">Zelos Guide</h2>
  6.         <p>Welcome to Zelos!</p>
  7.         <p>It could be hard going fighting through a Zelos competition by yourself. So we wrote a quick guide to help you get started!</p>
  8.         <p>
  9.           If you haven't already, go ahead and
  10.          <router-link to="/download" id="downloadLink">download the app!</router-link>
  11.        </p>
  12.        <p>Follow these steps to start winning games:</p>
  13.        <ol>
  14.          <li>Download the Zelos desktop app (required)</li>
  15.          <p>This will help us track various game stats that's critical to our competitions! The desktop app will also provide you with an in-game overlay for joining challenges and viewing your stats.</p>
  16.           <li>Join a challenge! (Through site or app)</li>
  17.           <p>Zelos has dozens of challenges for you to pick and choose. Join one to learn about the objective, prizing and restrictions!</p>
  18.           <li>Compete!</li>
  19.           <p>Now that you understand your objective, go out there and try your best! Be aware that your have limited attempts on the challenge!</p>
  20.           <li>Check your ranking</li>
  21.           <p>Now that you made an attempt at the challenge, check how you did compared to others and how many Zips (Zelos Points) you can win! If you're not satisfied, it's time to make another attempt!</p>
  22.           <li>Battle Pass rewards</li>
  23.           <p>You may have also earned EXP from competing in the challenge. This EXP levels up your battle pass which leads even more rewards!</p>
  24.           <li>Redeem Zips for prizes</li>
  25.           <p>
  26.             Once you've earned enough Zips through challenges and the battle pass, it's time to redeem a game!
  27.             <router-link to="/download">Go to the prizes page</router-link>&nbspand pick a reward that you can afford with your Zips. Be aware, some prizes are only available once your battle pass is leveled up!
  28.           </p>
  29.         </ol>
  30.         <p>Here's an introduction to using the Zelos Overwolf App for CS:GO
  31.        <iframe width="560" height="315" src="https://www.youtube.com/embed/UXCb8_d-WL4" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  32.        </p>
  33.      </div>
  34.    </section>
  35.    <AppFooter />
  36.  </div>
  37. </template>
  38.  
  39. <style lang="scss">
  40. .guide {
  41.  .container {
  42.    max-width: 980px !important;
  43.  }
  44.  p {
  45.    line-height: 1.8;
  46.    color: rgba(255, 255, 255, 0.8);
  47.    max-width: 100%;
  48.  }
  49.  ol {
  50.    padding-left: 0;
  51.    li {
  52.      color: #fff;
  53.      font-weight: bold;
  54.      line-height: 1.8;
  55.      margin-top: 24px;
  56.    }
  57.    p {
  58.      padding-left: 32px;
  59.    }
  60.  }
  61.  iframe {
  62.    display: block;
  63.    margin-top: 20px;
  64.    max-width: 100%;
  65.  }
  66. }
  67. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement