parent
a095522a04
commit
a31904de95
Binary file not shown.
Binary file not shown.
@ -0,0 +1,3 @@
|
|||||||
|
html{
|
||||||
|
background-color: #91A3B4;
|
||||||
|
}
|
@ -0,0 +1,59 @@
|
|||||||
|
<script setup>
|
||||||
|
import {ref} from "vue";
|
||||||
|
const result = ref(0)
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-container class="result-board-container">
|
||||||
|
<el-header class="special-header">
|
||||||
|
<label class="special-event">special event !</label>
|
||||||
|
</el-header>
|
||||||
|
<el-main class="number-container">
|
||||||
|
<label class="number">13</label>
|
||||||
|
</el-main>
|
||||||
|
</el-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
@font-face {
|
||||||
|
font-family: Itim;
|
||||||
|
src: url("src/assets/fonts/Itim-Regular.ttf");
|
||||||
|
}
|
||||||
|
* {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.result-board-container {
|
||||||
|
width: 456px;
|
||||||
|
height: 338px;
|
||||||
|
background-color: #B4BEC8;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
.special-header {
|
||||||
|
height: 80px;
|
||||||
|
}
|
||||||
|
.special-event {
|
||||||
|
text-align: center;
|
||||||
|
display: block;
|
||||||
|
font-size: 42px;
|
||||||
|
width: 329px;
|
||||||
|
height: 56px;
|
||||||
|
background-color: #E3F32880;
|
||||||
|
color: #251515;
|
||||||
|
border-radius: 50px;
|
||||||
|
margin-left: 60px;
|
||||||
|
margin-top: 20px;
|
||||||
|
font-family: Itim,serif;
|
||||||
|
}
|
||||||
|
.number-container {
|
||||||
|
padding: 0 0 10px 0;
|
||||||
|
}
|
||||||
|
.number {
|
||||||
|
font-size: 140px;
|
||||||
|
padding: 0 0 30px 0;
|
||||||
|
text-align: center;
|
||||||
|
display: block;
|
||||||
|
font-family: Itim,serif;
|
||||||
|
color: #1D2D5F;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,58 @@
|
|||||||
|
<script setup>
|
||||||
|
const buttonColor = ref({
|
||||||
|
background: '#ffffff'
|
||||||
|
})
|
||||||
|
const tag = ref(0)
|
||||||
|
function clicked(num)
|
||||||
|
{
|
||||||
|
tag.value=num
|
||||||
|
buttonColor.value.background = '#48653A'
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-container class="score-board-container">
|
||||||
|
<label class="score-label">s<br>c<br>o<br>r<br>e</label>
|
||||||
|
<el-main class="el-main" direction="vertical">
|
||||||
|
<el-button class="button" @click="clicked(4)" :style="tag > 3? buttonColor: ''"></el-button>
|
||||||
|
<el-button class="button" @click="clicked(3)" :style="tag > 2? buttonColor: ''"></el-button>
|
||||||
|
<el-button class="button" @click="clicked(2)" :style="tag > 1? buttonColor: ''"></el-button>
|
||||||
|
<el-button class="button" @click="clicked(1)" :style="tag > 0? buttonColor: ''"></el-button>
|
||||||
|
</el-main>
|
||||||
|
</el-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.score-board-container {
|
||||||
|
width: 161px;
|
||||||
|
height: 280px;
|
||||||
|
background-color: #3D3B3580;
|
||||||
|
border-radius: 30px;
|
||||||
|
padding: 0 0 0 20px;
|
||||||
|
}
|
||||||
|
.el-main{
|
||||||
|
align-content: center;
|
||||||
|
padding: 0 0 0 20px;
|
||||||
|
}
|
||||||
|
.score-label {
|
||||||
|
width: 150px;
|
||||||
|
height: 221px;
|
||||||
|
font-size: 40px;
|
||||||
|
background-color: #BEAB8F;
|
||||||
|
border-radius: 50px;
|
||||||
|
margin-top: 30px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 40px;
|
||||||
|
color: #251515;
|
||||||
|
font-family: Itim,serif;
|
||||||
|
}
|
||||||
|
.button{
|
||||||
|
height: 44px;
|
||||||
|
width: 44px;
|
||||||
|
background-color: #D9D9D9;
|
||||||
|
border: 3px solid #000000;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin: 8px;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in new issue