photography.scss
836 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
48
49
50
51
52
/**
* WooCommerce Photography
*/
/**
* Imports
*/
@import 'bourbon';
@import '../../../sass/utils/variables';
@import '../../../sass/utils/mixins';
@import '../../../node_modules/susy/sass/susy';
@include susy-media($desktop) {
.woocommerce,
.woocommerce-page {
.photography-products {
.tools {
margin-bottom: 2.618em;
background-color: rgba(0,0,0,0.025);
padding: 1em 1em 1em 1.618em;
border: 0;
}
}
.site-main ul.products {
li.product-type-photography {
@include clearfix;
text-align: left;
.photography-image,
.photography-content {
float: none;
width: 100%;
}
.photography-image {
img {
width: 100%;
}
}
.photography-sku {
border-bottom: 1px dotted rgba(0,0,0,0.1);
}
.sku {
font-weight: 700;
}
}
}
}
}