-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
164 lines (139 loc) · 3.39 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
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
html {
box-sizing: border-box;
}
body {
margin: 0;
overflow-x: hidden;
font-family: 'Lato', sans-serif;
color: #54575A;
background: linear-gradient(180deg, #FFFFFF 0%, #F3F8F7 49.91%, #FFF9F5 94.19%);
}
.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;
left: 221px;
top: 531px;
}
.app-store-btn img {
width: 138.44px;
height: 46.28px;
}
.play-store-btn {
position: absolute;
left: 381.81px;
top: 531px;
}
.play-store-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;
}
.product-img {
position: absolute;
height: 222px;
left: 737px;
right: 479px;
top: 1157px;
}
.orders-img {
position: absolute;
height: 470px;
left: 479px;
right: 737px;
top: 913px;
}
.cart-img {
position: absolute;
height: 222px;
left: 221px;
right: 995px;
top: 1157px;
}
.home-img {
position: absolute;
height: 470px;
left: 995px;
right: 221px;
top: 908px;
}
/* Background Toggles */
.background-toggles {
position: absolute;
right: 150px;
top: 50px;
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-color: #cfb7f3;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' width='80' height='80'%3E%3Cpath fill='%23fe4a00' fill-opacity='0.19' d='M14 16H9v-2h5V9.87a4 4 0 1 1 2 0V14h5v2h-5v15.95A10 10 0 0 0 23.66 27l-3.46-2 8.2-2.2-2.9 5a12 12 0 0 1-21 0l-2.89-5 8.2 2.2-3.47 2A10 10 0 0 0 14 31.95V16zm40 40h-5v-2h5v-4.13a4 4 0 1 1 2 0V54h5v2h-5v15.95A10 10 0 0 0 63.66 67l-3.47-2 8.2-2.2-2.88 5a12 12 0 0 1-21.02 0l-2.88-5 8.2 2.2-3.47 2A10 10 0 0 0 54 71.95V56zm-39 6a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm40-40a2 2 0 1 1 0-4 2 2 0 0 1 0 4zM15 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm40 40a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'%3E%3C/path%3E%3C/svg%3E");
}
.background-2 {
background: #ADA996; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.background-3 {
background: #2980B9; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #FFFFFF, #6DD5FA, #2980B9); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #FFFFFF, #6DD5FA, #2980B9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}