forked from Azora-ads/Kais-Lifestyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mystyles.css
162 lines (151 loc) · 3.18 KB
/
mystyles.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
.cust-add-to-cart{
background-color: #266bf9;
color: #FFFFFF;
padding: 5px 15px;
border-radius: 60px;
}
.cust-wishlist{
border: 1px solid #CCC;
width:30px;
height: 30px;
border-radius: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.cust-wishlist-active{
width: 30px;
height: 30px;
border-radius: 100%;
display: flex;
justify-content: center;
align-items: center;
background: rgb(255, 8, 0);
color: #FFFFFF;
border: 1px solid rgb(255, 8, 0);
}
.brand-slider h1{
font-weight: 600;
color: #444;
margin: 20px;
margin-bottom: 40px;
margin-top: 0;
}
.brand-slider-item a div{
border: 2px solid #DDD;
padding:20px 0;
margin: 0 10px;
border-radius: 8px;
transition: all 0.3s ease-in;
}
.brand-slider-item a div h6{
font-size: 35px;
font-weight: 600;
color: #555;
margin: 0;
transition: all 0.3s ease-in;
}
.brand-slider-item a div p{
font-size: 22px;
color: #AAA;
margin: 0;
transition: all 0.3s ease-in;
}
.brand-slider-item a div:hover{
border: 2px solid #266bf9;
}
.brand-slider-item a div:hover > h6{
color: #266bf9;
}
.brand-slider-item a div:hover>p {
color: #266cf980;
}
#buffer {
position: fixed;
top: 0;
left: 0;
background: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100%;
z-index: 99999;
}
#buffer .svg-spinner {
width: 20vw;
max-width: 100px;
transform-origin: center;
animation: rotate4 2s linear infinite;
}
#buffer .svg-spinner circle {
fill: none;
stroke: hsl(214, 97%, 59%);
stroke-width: 2;
stroke-dasharray: 1, 200;
stroke-dashoffset: 0;
stroke-linecap: round;
animation: dash4 1.5s ease-in-out infinite;
}
@keyframes rotate4 {
100% {
transform: rotate(360deg);
}
}
@keyframes dash4 {
0% {
stroke-dasharray: 1, 200;
stroke-dashoffset: 0;
}
50% {
stroke-dasharray: 90, 200;
stroke-dashoffset: -35px;
}
100% {
stroke-dashoffset: -125px;
}
}
.error {
position: absolute;
top: -200px;
left: 20vw;
right: 20vw;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
width: auto;
padding: 15px;
background: #EF665B;
border-radius: 8px;
box-shadow: 0px 0px 5px -3px #111;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease-in;
}
.error__icon {
width: 20px;
height: 20px;
}
.error__icon path {
fill: #fff;
}
.error__title {
font-weight: 500;
font-size: 14px;
color: #fff;
}
.error__close path {
fill: #fff;
}
.img-slider-layout{
width: 500px !important;
object-fit:contain;
height:400px;
}
@media screen and (max-width:700px) {
.img-container {
transform: translateY(-80px);
}
.header-cont {
margin-top: 50px;
}
}