-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (130 loc) · 2.38 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Uber Move",sans-serif;
}
main {
width: 100%;
}
.page1 {
width: 100%;
height: 100vh;
background-color: black;
color: white;
}
.page1 nav {
width: 100%;
height: 80px;
/* border-bottom: 2px solid white; */
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.5vw 7vw;
}
nav .brand h1 {
font-size: 1.6vw;
font-weight: lighter;
position: relative;
bottom: 3px;
}
nav .part2 {
display: flex;
gap: 2vw;
position: relative;
right: 15vw;
}
nav .part3 {
display: flex;
align-items: center;
gap: 2vw
;
}
.part3 .btns .btn1 {
width: 70px;
height: 30px;
background-color: black;
color: white;
border: none;
font-size: 15px;
font-weight: 600;
}
.btns .btn2 {
width: 80px;
height: 35px;
background-color: white;
font-size: 15px;
font-weight: 530;
border-radius: 40px;
}
.hero {
display: flex;
width: 80%;
height: calc(100vh - 80px);
/* border: 2px solid white; */
margin: 0 auto;
}
.hero .left {
width: 50%;
height: 100%;
/* background-color: cadetblue; */
padding-top: 12vw;
}
.left h1 {
font-size: 3.5vw;
width: 500px;
}
.left p {
font-size: 20px;
margin-top: 3vw;
margin-bottom: 1vw;
}
.left .location {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 1vw;
width: 400px;
height: 40px;
border: 2px solid white;
border-radius: 6px;
background-color: white;
margin-bottom: 2vw;
}
.location i {
color: black;
}
.location input {
width: 400px;
height: 35px;
font-size: 16px;
background: none;
border: none;
outline: none;
}
.price {
display: flex;
align-items: center;
justify-content: center;
width: 120px;
height: 40px;
background-color: white;
border-radius: 6px;
color: black;
font-size: 15px;
font-weight: 600;
}
.hero .right {
width: 50%;
height: 100%;
/* background-color: cadetblue; */
position: relative;
}
.right img {
position: absolute;
width: 90%;
height: 89%;
object-fit: cover;
border-radius: 5px;
margin-top: 3vw;
}