-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
166 lines (144 loc) · 3.25 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
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
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
html {
box-sizing: border-box;
}
body {
margin: 0;
overflow-x: hidden;
background: linear-gradient(180deg, #FFFFFF 0%, #F3F8F7 49.91%, #FFF9F5 94.19%);
font-family: Lato, sans-serif;
color: #54575A;
}
.wrapper {
position: relative;
width: 1440px;
height: 1379px;
margin: auto;
}
.brand-img {
position: absolute;
width: 193px;
height: 47.64px;
left: 221px;
top: 50.25px;
}
.title {
position: absolute;
width: 458px;
height: 135px;
left: 221px;
top: 236px;
font-style: normal;
font-weight: 500;
font-size: 64px;
line-height: 67px;
}
.text {
position: absolute;
width: 394px;
height: 96px;
left: 221px;
top: 403px;
font-style: normal;
font-weight: normal;
font-size: 20px;
line-height: 32px;
}
.app-store-btn {
position: absolute;
width: 138.44px;
height: 46.28px;
left: 221px;
top: 531px;
}
.app-store-btn img {
width: 138.44px;
height: 46.28px;
}
.google-play-btn {
position: absolute;
width: 156.19px;
height: 46.28px;
left: 381.81px;
top: 531px;
}
.google-play-btn img {
width: 156.19px;
height: 46.28px;
}
.main-image-container {
position: absolute;
width: 535.72px;
height: 309.27px;
left: 683.28px;
top: 229.73px;
}
.main-image-container img {
height: 411.15px;
}
.profile-img {
position: absolute;
height: 444px;
left: 737px;
right: 479px;
top: 686px;
}
.orders-img {
position: absolute;
height: 470px;
left: 479px;
right: 737px;
top: 913px;
}
.home-img {
position: absolute;
height: 470px;
left: 995px;
right: 221px;
top: 908px;
}
.cart-img {
position: absolute;
height: 222px;
left: 221px;
right: 995px;
top: 1157px;
}
.product-img {
position: absolute;
height: 222px;
left: 737px;
right: 479px;
top: 1157px;
}
/* Background Toggles */
.background-toggles {
position: absolute;
right: 150px;
top: 70px;
display: flex;
}
.background-toggles > div {
height: 25px;
width: 25px;
border-radius: 5px;
margin-right: 10px;
box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.3);
cursor: pointer;
}
/* Backgrounds */
.background-1 {
background: #8e9eab; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #eef2f3, #8e9eab); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #eef2f3, #8e9eab); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.background-2 {
background: #FFEEEE; /* fallback for old browsers */
background: -webkit-linear-gradient(-160deg, #DDEFBB, #FFEEEE); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(-160deg, #DDEFBB, #FFEEEE); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.background-3 {
background: #ADA996; /* fallback for old browsers */
background: -webkit-linear-gradient(-20deg, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(-20deg, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}