-
Notifications
You must be signed in to change notification settings - Fork 0
/
gotcha.css
57 lines (49 loc) · 1.08 KB
/
gotcha.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
55
56
57
@font-face {
font-family: 'GmarketSansLight';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
}
@font-face {
font-family: 'GmarketSansMedium';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
}
@font-face {
font-family: 'GmarketSansBold';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
}
@keyframes fadein {
from {
opacity:0;
}
to {
opacity:1;
}
}
* {margin : 0; padding: 0; box-sizing: border-box;}
::-webkit-scrollbar {
display: none;
}
header {
padding-top: 8px;
text-align: center;
background: white;
width: 100%;
height: 50px;
}
body{
overflow: hidden;
animation: fadein 1s;
background-color: white;
}
h3{
font-size: 30px;
font-family: 'GmarketSansBold';
color: black;
justify-content: center;
align-items: center;
}
img{
height: 3%;
position: absolute;
top: 13px;
left: 13px;
}