-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
172 lines (153 loc) · 3.03 KB
/
index.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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
*{
margin: 0;
padding: 0;
}
#home{
height: 100vh;
width: 100%;
background: url("assets/home/background-home-desktop.jpg"), lightgray 0px 0px / 100% 100% no-repeat;
mix-blend-mode: screen;
/* background-image: url("assets/home/background-home-desktop.jpg"); */
/* background-position: center;
background-size: cover;
position: relative; */
}
nav{
display: grid;
/* justify-content: space-around; */
grid-template-columns: repeat(3, 1fr);
padding: 35px 0px;
}
nav a{
align-self: center;
position: relative;
}
nav a img{
position: relative;
left: 45px;
}
nav div{
position: relative;
grid-column: 2/span 2;
justify-self: flex-end;
}
.simpleLine{
width: 520px;
position: absolute;
z-index: 10;
top: 35px;
right: 655px;
opacity: 0.2515;
background: #FFF;
}
.effectLineHome{
transform: scale(1);
background: white;
width: 70px;
position: absolute;
left: 66px;
transition: all 500ms;
}
.effectLineDest{
transform: scale(0);
background: white;
width: 110px;
position: absolute;
left: 172px;
transition: all 500ms;
}
.effectLineCrew{
transform: scale(0);
background: white;
width: 60px;
position: absolute;
left: 327px;
transition: all 500ms;
}
.effectLineTech{
transform: scale(0);
background: white;
width: 108px;
position: absolute;
right: 143px;
transition: all 500ms;
}
.activeEffectLine{
transform: scale(1);
}
nav div ul{
display: flex;
width: fit-content;
padding: 25px 65px;
padding-right: 100px;
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(40.774227142333984px);
}
nav div ul li{
list-style: none;
/* padding: 0px 37px; */
padding-right: 40px;
}
nav div ul li a{
color: #FFF;
font-family: Barlow Condensed;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 2.7px;
text-decoration: none;
}
.mainContainer_Home{
display: flex;
}
.textContainer{
width: 444px;
margin-left: 153px;
margin-top: 140px;
}
.textContainer h3{
color: #D0D6F9;
font-family: Barlow Condensed;
font-size: 28px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 4.725px;
}
.textContainer h1{
color: #FFF;
font-family: Bellefair;
font-size: 150px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.textContainer p{
color: #D0D6F9;
font-family: Barlow;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 32px;
}
.subTextContainer{
display: flex;
width: 234px;
height: 234px;
margin-top: 215px;
margin-left: 384px;
border-radius: 274px;
background: #FFF;
justify-content: center;
align-items: center;
}
.subTextContainer h1{
color: #0B0D17;
font-family: Bellefair;
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 2px;
}