header.vue
1.85 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<template>
<header>
<div class = "headerBox">
<div class = "logo_content"> KHU NOTICE</div>
<div class = "logo_content_medium"> FOR LAZE</div>
<div class = "logo_content_little"> started by 2020-2 open source project visit khu-hub registory</div>
<a href = "http://khuhub.khu.ac.kr/2019100538/khu-notice-project"><div class = "visit"> Visit</div></a>
<img class = "logo" src = "../assets/khlogo.png">
<div class = "search">
<input class = "search_blank">
</div>
</div>
</header>
</template>
<script>
export default {
name: 'header',
data () {
return {
}
}
}
</script>
<style>
header{
height: 443px;
background:linear-gradient(131deg,rgb(247,183,66),rgb(252,74,66));
}
.headerBox{
width:1010px;
height: inherit;
margin: 0 auto 0 auto;
position: relative;
}
.logo{
position: absolute;
right: 50px;
}
.logo_content{
color: white;
font-family: 'BIGJOHN';
font-size: 60px;
display: block;
position: absolute;
top:100px;
}
.logo_content_medium{
color: white;
font-family: 'BIGJOHN';
font-size: 40px;
display: block;
position: absolute;
top:170px;
}
.logo_content_little{
color: white;
font-family: 'BIGJOHN';
font-size: 15px;
display: block;
position: absolute;
top:240px;
width: 400px;
}
.visit{
color: white;
font-family: 'consolas';
font-size: 30px;
display: block;
position: absolute;
top:300px;
padding: 5px 20px 5px 20px;
border: 2px solid white;
cursor: pointer;
}
.search{
position: absolute;
right:0px;
top: 3px;
height: 25px;
}
.search_blank{
outline: none;
height: 20px;
border: 2px solid white;
background-color: transparent;
border-radius: 1px;
color:white;
width:250px;
}
</style>