-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (42 loc) · 1013 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (42 loc) · 1013 Bytes
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
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
body{
margin:0px;
font-family: 'Poppins';
width: 100%;
overflow-x: hidden;
}
:root {
--bike_image_width:288px;
--bike_image_height: 243px;
--font-color:#E76F51;
}
.common-text{
color: var(--font-color);
}
.header_nav{
background-color: #264653;
}
.top-section{
background-color: #264653;
}
.purchase-button{
background: #E76F51;
}
.featured_subheadline{
color:#E76F51;
}
.featured-bike-1,.featured-bike-3{
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
height: var(--bike_image_height);
width:var(--bike_image_width);
object-fit: contain;
}
.featured-bike-2{
height: var(--bike_image_height);
width:var(--bike_image_width);
object-fit: contain;
}
.footer{
background-color: #0B0D17;
}