-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathindex.scss
97 lines (86 loc) · 1.58 KB
/
index.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
$primary-color: var(--vp-button-brand-bg);
$text-color: var(--vp-c-text-1);
$second-text-color: var(--vp-c-text-2);
html[class="dark"] {
.hidden-dark {
visibility: hidden;
}
.hidden-light {
visibility: visible;
}
}
.hidden-light {
visibility: hidden;
}
.big-home-area {
max-width: 1152px;
margin: 0 auto;
}
.big-title {
margin-top: 100px;
h1 {
color:$primary-color;
line-height: 64px;
font-size: 56px;
font-weight: bold;
}
p {
font-size: 26px;
line-height: 34px;
color: $second-text-color;
&.big {
font-size: 36px;
line-height: 55px;
color: $text-color;
font-weight: bold;
}
}
}
.big-demo {
img {
position: absolute;
right: 300px;
top: -60px;
z-index: -1;
}
}
@media screen and (max-width: 1600px) {
.big-demo img {
right: 200px;
}
}
@media screen and (max-width: 1450px) {
.big-demo img {
right: 100px;
}
}
@media screen and (max-width: 1200px) {
.big-demo img {
position: relative;
margin-top: 30px;
right: 0;
top: 0;
}
.big-home-area {
padding: 0 50px;
}
}
.big-start {
padding: 20px 0 40px 0;
button {
font-size: 16px;
padding: 10px 20px;
border-radius: 30px;
outline: none;
appearance: none;
margin-right: 10px;
border-color: var(--vp-button-alt-border);
color: var(--vp-button-alt-text);
background-color: var(--vp-button-alt-bg);
&.primary {
border: 1px solid var(--vp-button-brand-border);
color: var(--vp-button-brand-text);
background-color: var(--vp-button-brand-bg);
}
}
}