-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
98 lines (84 loc) · 1.6 KB
/
styles.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
body {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5);
overflow-x: hidden;
}
.bg-glass {
background: rgba(255, 255, 255, .6);
backdrop-filter: blur(10px);
border-radius: 10px;
padding: 4rem 2rem;
padding: 20px;
}
.shop-btn {
position: fixed;
display: flex;
justify-content: center;
align-items: center;
right: 10px;
bottom: 10px;
background-color: #007bff;
color: #fff;
border: none;
padding: 10px;
border-radius: 100%;
cursor: pointer;
width: 75px;
height: 75px;
margin-left: auto;
transition: 0.3s ease-in-out;
}
.flex-grow-1 {
flex-grow: 1;
}
.img-fit {
object-fit: contain;
object-position: center;
}
._hover:hover {
cursor: pointer;
transform: scale(1.1);
filter: brightness(1.2);
transition: all .5s ease-in-out;
}
@keyframes slideInRight {
from {
transform: translateX(-100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideInLeft {
from {
transform: translateX(200%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideInUp {
from {
transform: translateY(200%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.animationLR {
animation: slideInRight 1.5s ease-out;
}
.animationRL {
animation: slideInLeft 1.5s ease-out;
}
.animationBP {
animation: slideInUp 1.5s ease-out;
}