-
Notifications
You must be signed in to change notification settings - Fork 1
/
iStyle.css
54 lines (46 loc) · 931 Bytes
/
iStyle.css
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
@import url('https://fonts.googleapis.com/css2?family=Do+Hyeon&family=Gowun+Dodum&display=swap');
.welcome{
height: 100vh;
width: 100%;
background-color: black;
background-position: center;
background-size: cover;
position: relative;
}
.content{
position: absolute;
width: 80%;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-family: 'Gowun Dodum', sans-serif;
color: white;
text-align: center;
font-size: 16px;
}
#go{
margin-top: 80px;
padding-top: 10px;
padding-bottom: 10px;
width: 100%;
}
#backVideo{
max-width: 80%;
height: auto;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
@media (min-aspect-ratio:16/9){
#backViedeo{
width: 100%;
height: auto;
}
}
@media (max-aspect-ratio:16/9){
#backViedeo{
width: auto;
height: 100%;
}
}