-
Notifications
You must be signed in to change notification settings - Fork 0
/
_welcome.scss
78 lines (63 loc) · 1.19 KB
/
_welcome.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
.welcome {
display: grid;
gap: 24px;
grid-template-areas:
"string-1"
"img-1"
"string-2"
"img-2"
"string-3"
"table";
@include breakpoint {
grid-template-columns: 5fr 3fr 4fr;
grid-template-areas:
"strings-1-2 strings-1-2 img-1"
"img-2 bottom bottom";
}
}
.welcome__self {
margin: 48px 0 0;
}
.welcome__contents-wrapper {
grid-area: strings-1-2;
display: contents;
@include breakpoint { display: revert }
}
.welcome__text {
font: 400 28px var(--accent-font);
text-transform: uppercase;
@include breakpoint {
font-size: 36px;
}
}
.welcome__text_accent {
font-weight: bold;
color: var(--red);
}
.welcome__string-1 { grid-area: string-1 }
.welcome__string-2 { grid-area: string-2 }
.welcome__string-3 { grid-area: string-3 }
.welcome__img-1 {
grid-area: img-1;
width: 100%;
border-radius: 50%;
}
.welcome__img-2 {
grid-area: img-2;
width: 100%;
margin-top: 10px;
transform: scale(1.07);
}
.welcome__table {
grid-area: table;
margin: 44px 0 40px;
@include breakpoint { margin: 60px 0 48px }
}
.welcome__bottom {
@include breakpoint {
grid-area: bottom;
}
}
.welcome__link {
font-size: 18px;
}