-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmcq.vue
56 lines (53 loc) · 1.17 KB
/
mcq.vue
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
46
47
48
49
50
51
52
53
54
55
56
<template>
<div id="s">
<div id='container'>
<div class='row'>
<router-link to='hocthuat'>Học thuật</router-link>
<router-link to='nghethuat'>Nghệ thuật</router-link>
</div>
<div class='row'>
<router-link to='thethao'>Thể thao</router-link>
<router-link to='xahoi'>Xã hội</router-link>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'mcq'
}
</script>
<style scoped>
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam:wght@300;400&family=DM+Mono&family=DM+Sans&family=DM+Serif+Display&display=swap%27');
#s {
align-items: center;
justify-content: center;
display: flex;
height: 600px;
font-family: 'Be Vietnam', sans-serif;
}
.row {
display: flex;
}
.row a {
margin-right: 20px;
}
a {
color: white;
font-size: 30px;
text-decoration: none;
justify-content: center;
align-items: center;
display: flex;
width: 300px;
height: 200px;
margin-bottom: 30px;
border: 2px solid #0053d6;
border-radius: 50px;
background-color: #0053d6;
}
a:hover {
background-color: white;
color: #0053d6;
}
</style>