-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
168 lines (137 loc) · 2.49 KB
/
style.css
File metadata and controls
168 lines (137 loc) · 2.49 KB
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
*{
margin: 0;
padding: 0;
}
@font-face {
font-family: "kajiro-bold";
src: url(./Kajiro\ Bold.ttf);
}
html, body{
width: 100%;
height: 100%;
}
#main{
width: 100%;
height: 100vh;
}
#top{
pointer-events: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
}
#back {
width: 100%;
height: 100vh;
}
#back img{
width: 100%;
height: 100%;
object-fit: cover;
}
#workingarea{
position: relative;
width: 80%;
margin: 0 auto;
max-width: 1920px;
height: 100vh;
}
#nav{
display: flex;
justify-content: space-between;
width: 100%;
padding: 40px 0;
}
#nav img{
height: 60px;
}
#nleft , #nright{
display: flex;
align-items: center;
gap: 55px;
}
#nleft a, #nright a{
color: #fff;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
text-decoration: none;
text-transform: uppercase;
font-weight: 600;
font-size: 12px;
letter-spacing: -0.5px;
pointer-events: all;
}
#hero{
margin-top: 40px;
position: absolute;
top: 50%;
left: 0%;
transform: translate(0%, -50%);
width: 100%;
display: flex;
justify-content: space-between;
}
#heroleft{
min-width: 50%;
}
#heroleft .elem{
position: relative;
height: 9vw;
overflow: hidden;
}
#heroleft .elem h1:nth-child(1){
position: absolute;
top: 0;
}
#heroleft .elem h1{
position: absolute;
top: 100%;
left: 0;
line-height: .9;
font-family: "kajiro-bold";
color: white;
font-weight: 100;
font-size: 11vw;
}
#heroleft button{
padding: .8vw 4vw;
margin-top: 2vw;
font-size: 3vw;
font-family: "kajiro-bold";
pointer-events: all;
}
#heroright{
width: 20%;
display: flex;
flex-direction: column;
align-items: end;
color: #fff;
}
#heroright p{
text-align: end;
font-size: 14px;
font-weight: 100;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: .9vw;
}
#heroright #imagediv{
width: 100%;
height: 170px;
margin-top:10px;
margin-bottom: 30px;
}
#heroright p:nth-child(3){
margin-bottom: 50px;
}
#heroright p:nth-child(1){
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 3vw;
font-weight: 700;
letter-spacing: 2px;
}
#heroright #imagediv img{
width: 100%;
height: 100%;
object-fit: cover;
}