index.scss
923 Bytes
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
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';
.page {
.bgc {
image {
width: 100%;
height: 100%;
}
}
.bg {
image {
position: absolute;
width: 750px;
height: 1303px;
top: -130px;
}
}
.decoration {
position: relative;
.d1 {
position: absolute;
width: 160px;
height: 192px;
top: 0;
left: 0;
}
.d2 {
position: fixed;
width: 301px;
height: 195px;
left: 0;
bottom: 0;
}
}
.main {
.top-space {
height: 1042px;
}
.content {
.btn {
position: relative;
margin: 0 auto;
@include btn-center(336px, 88px);
border-radius: 44px;
background-image: linear-gradient(to right, #b83138, #f2234a 51%, #b83138);
font-weight: 300;
font-size: 32px;
color: #fff;
}
}
}
}