-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (88 loc) · 1.74 KB
/
style.css
File metadata and controls
104 lines (88 loc) · 1.74 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
@import url("https://fonts.googleapis.com/css2?family=Baloo+2&family=Raleway&family=Rubik&display=swap");
/* SASS Template */
/* Variables */
/* Global Classes */
button, button:focus {
outline: none !important;
box-shadow: none !important;
}
/* Typography classes */
.fontBaloo {
font-family: "Baloo 2", cursive;
}
.fontRubik {
font-family: "Rubik", sans-serif;
}
.fontRaleway {
font-family: "Raleway", sans-serif;
}
.fontSize12 {
font-size: 12px;
}
.fontSize14 {
font-size: 14px;
}
.fontSize16 {
font-size: 16px;
}
.fontSize20 {
font-size: 20px;
}
/* Color Template */
.colorPrimary {
color: #003859;
}
.colorPrimaryBg {
background: #003859;
}
.colorSecondary {
color: #00A5C4;
}
.colorSecondaryBg {
background: #00A5C4;
}
.colorYellow {
color: #FFD289;
}
.colorYellowBg {
background: #FFD289;
}
/* Top Sale Template */
#topSale .owl-carousel .item .product a {
overflow: hidden;
}
#topSale .owl-carousel .item .product img {
transition: transform 0.5s ease;
}
#topSale .owl-carousel .item .product img:hover {
transform: scale(1.1);
}
#topSale .owl-carousel .owl-nav button {
position: absolute;
top: 30%;
outline: none;
}
#topSale .owl-carousel .owl-nav button.owl-prev {
left: 0;
}
#topSale .owl-carousel .owl-nav button.owl-prev span,
#topSale .owl-carousel .owl-nav button.owl-next span {
font-size: 35px;
color: #003859;
padding: 0 1rem;
}
#topSale .owl-carousel .owl-nav button.owl-prev span {
margin-left: -4rem;
}
#topSale .owl-carousel .owl-nav button.owl-next {
right: 0;
}
#topSale .owl-carousel .owl-nav button.owl-next span {
margin-right: -4rem;
}
/* Special Price Template */
#specialPrice .grid .gridItem {
margin-right: 1rem;
margin-top: 1rem;
}
/*# sourceMappingURL=style.css.map */