-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.scss
65 lines (62 loc) · 1.14 KB
/
App.scss
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
@import url('https://fonts.googleapis.com/css?family=Bebas+Neue|Poppins:300,400&display=swap');
.header {
width: 100%;
display: flex;
align-items: center;
height: 100px;
a {
margin: 0 28px;
text-decoration: none;
color: #181818;
font-size: 12px;
font-weight: 600;
font-family: 'Poppins';
}
}
.container {
position: relative;
width: 1280px;
min-width: 1280px;
margin: 0 auto;
display: flex;
justify-content: center;
.page {
position: absolute;
.inner {
display: flex;
justify-content: center;
h1 {
font-family: 'Bebas Neue';
font-size: 52px;
letter-spacing: 0.1rem;
.line-wrap {
overflow: hidden;
height: 66px;
}
}
p {
font-family: 'Poppins';
margin-top: 200px;
width: 340px;
font-weight: 300;
line-height: 24px;
font-size: 14px;
}
}
}
}
.page-enter {
opacity: 0;
}
.page-enter-active {
opacity: 1;
transition: opacity 400ms;
transition-delay: 600ms;
}
.page-exit {
opacity: 1;
}
.page-exit-active {
opacity: 0;
transition: opacity 400ms;
}