blob: 6731cfbdc57503c6ee88a0622f6fb631d6e65181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<script setup lang="ts">
</script>
<template>
<div class="fc_launch__container">
<div class="fc_title">Northstar</div>
<div class="fc_subtitle">Last updated: 23-09-2022 14:46</div>
<el-button type="primary" size="large">Launch game</el-button>
<el-button class="run__server" size="large">Run server</el-button>
</div>
</template>
<style scoped>
.fc_launch__container {
margin: 50px;
position: fixed;
bottom: 0;
}
/* Buttons */
button {
text-transform: uppercase;
border-radius: 2px;
padding: 30px;
font-size: 15px;
}
.run__server {
background-color: #6a6a6a75;
border: none;
color: white;
}
/* Titles */
.fc_title {
color: white;
font-size: 50px;
font-weight: bold;
}
.fc_subtitle {
color: rgb(168, 168, 168);
margin-bottom: 20px;
}
</style>
|