-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathintro.css
More file actions
81 lines (67 loc) ยท 1.38 KB
/
intro.css
File metadata and controls
81 lines (67 loc) ยท 1.38 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
body, html {
margin: 0;
padding: 0;
height: 100%;
}
.intro_background{
background-image: linear-gradient( rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.4) ), url("images/intro_back1.jpg");
border: 0;
padding: 0;
min-height: 100%;
background-position: center;
background-size: cover;
position: relative;
z-index:0;
}
.intro_content
{
top:30%;
left:40%;
color: aliceblue;
position: absolute;
z-index:1;
text-align: center;
justify-content: center;
}
.intro_title{
font-family: 'Anton', sans-serif;
font-weight: 1200;
font-size: 90px;
letter-spacing: 9px;
}
.intro_subtitle{
margin-top:50px;
font-family: 'Noto Sans KR', sans-serif;
font-size: 20px;
}
.vl {
margin-top:60px;
border-left: 2.5px solid #ffff;
height: 70px;
position: absolute;
left: 50%;
margin-left: -3px;
}
.intro_button button{
margin-top:190px;
width:150px;
height: 40px;
color:#000;
background: rgba(255, 255, 255, 0.7);
font-size: 20px;
font-weight: 800;
border:none;
border-radius: 20px;
box-shadow: 0 4px 16px rgba(22, 22, 22, 0.3);
transition:0.3s;
position: absolute;
transform: translate(-50%,-50%);
}
button:focus {
outline:0;
}
button:hover{
background: rgba(0,79,255,0.9);
cursor: pointer;
box-shadow: 0 2px 4px rgba(0,79,255,0.6);
}