-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackup_style.css
167 lines (123 loc) · 3 KB
/
backup_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
165
166
167
/*
INDEX
1. HEADER Section
2. Single-Product Page
2.1 Öle
2.2 Aromablüten
2.3 Lebensmittel
2.4 Kosmetik
2.5 Vape
3. Product-Catalogue
3.1 Gallery
3.2 Single-Item
3.2.1 Oils
3.2.2 Aromablüten
3.2.3 Lebensmittel
3.2.4 Kosmetik
3.2.5 VAPE
*/
/*
HEADER SECTION
*/
#lionhead{
transition: all 2s;
position: relative;
}
#product-menu-btn{
background-color: black;
border-radius: 15px;
cursor: pointer;
}
.p_open{
transform: translateY(150px);
}
.header-widget-area[data-section="sidebar-widgets-header-widget-1"] {
color: white;
display: block;
background-color: black;
height: auto;
width: 300px;
padding: 2em;
padding-left: 6em;
position: absolute;
top: 132px;
border-radius: 0px 0px 10px 0px;
display: none;
transition: display 2s;
}
.header-widget-area[data-section="sidebar-widgets-header-widget-1"] a{
font-size: 1.2em;
color: white;
font-weight: 900;
}
/*Menu Button*/
.menu-btn{
padding-top: 10px;
padding-bottom: 10px;
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 30px;
width: 50px;
cursor: pointer;
transition: all .5s;
margin-bottom: 5px;
}
.menu-btn__burger{
width: 37px;
height: 6px;
border-radius: 50%;
box-shadow: 0 2px 5px rgba(255,101,47,.2);
background: black;
transition: all .5s;
}
.menu-btn__burger::before, .menu-btn__burger::after{
content: '';
position: absolute;
width: 37px;
height: 6px;
border-radius: 50%;
background: black;
box-shadow: 0 2px 5px rgba(255,101,47,.2);
transition: all 1.5s;
}
.menu-btn__burger::before{
transform: translateY(-10px);
}
.menu-btn__burger::after{
transform: translateY(10px);
}
/*Menu Button ANIMATION*/
.menu-btn.open .menu-btn__burger{
transform: rotate(90deg);
height: 8px;
}
.menu-btn.open .menu-btn__burger::before{
transform: rotate(45deg) translate(1px, -19px);
width: 30px;
height: 8px;
}
.menu-btn.open .menu-btn__burger::after{
transform: rotate(-45deg) translate(1px, 19px);
width: 30px;
height: 8px;
}
/*Product Page*/
/*Page Header*/
.ast-merged-advanced-header.ast-title-bar-wrap.ast-advanced-headers-parallax.ast-advanced-headers-vertical-center {
background-position: center -122.5px;
margin-bottom: 2%;
}
/*Product Details*/
/*Product Image*/
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
opacity: 1;
transition: opacity 0.25s ease-in-out;
position: absolute;
right: -2%;
top: -100%;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images img{
width: 300px;
}