4 <meta charset="utf-8" />
6 <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
7 <link href="https://fonts.googleapis.com/css?family=Noto+Sans+SC:700" rel="stylesheet">
8 <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
9 <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
10 <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.js"></script>
12 <body style="font-family: 'Noto Sans SC', sans-serif; overflow: hidden; background-color: black">
13 <!-- Background image -->
15 <img id="background" class="w3-mobile" style="transform: scale(1.1); width: 100%; height: 100%; object-fit: contain; filter: blur(10px) contrast(110%) saturate(140%)" :src="image" />
17 <div id="background" :style="{
18 backgroundImage: 'url(' + image + ')',
19 transform: mobile ? 'scale(1.2)' : 'scale(1.05)',
22 filter: 'blur(10px) contrast(110%) saturate(140%)',
23 backgroundSize: 'cover',
24 backgroundPosition: 'center'
28 <div id="start" v-if="visible" class="w3-display-middle w3-threequarter">
30 <div class="w3-jumbo" style="padding: 10px; width: 100%; height: 100%; text-align: center; background-color: transparent">
31 <span style="width: 100%; color: white; text-shadow: 1px 1px 40px black">Enter Your Summoner Name</span>
32 <div class="w3-xlarge" style="border-radius: 5px; width: 100%; background-color: white; padding: 10px; box-shadow: 1px 1px 40px black">
33 <div class="w3-cell-row">
34 <select class="w3-select w3-cell" style="width: 100px; height: 50px; position: relative; top: 0px; padding: 0px 0px 0px 10px; margin: 5px; text-align: center; background-color: rgb(200, 50, 50); color: white; border-radius: 5px; border: none; outline: none;">
35 <option value="euw">EUW</option>
36 <option value="na">NA</option>
37 <option value="kr">KR</option>
39 <input v-on:keyup.enter="showNextPanel()" class="w3-input w3-cell" style="text-align: center; outline: none; margin: 5px; width: calc(100% - 230px);" type="text">
40 <button v-on:click="showNextPanel()" class="w3-button w3-cell" style="position: relative; bottom:1px; vertical-align: baseline; margin: 5px; width: 100px; height: 50px; background-color: rgb(200, 50, 50); color: white; border-radius: 5px; outline: none;"><span class="fas fa-arrow-right"></span></button>
46 <!-- Vue.js Script -->
47 <script src="script.js"></script>
49 <script id="reloadscript" src="{{ reload_url }}"></script>