-
Notifications
You must be signed in to change notification settings - Fork 11
/
foxycart.css
executable file
·81 lines (63 loc) · 1.31 KB
/
foxycart.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
/* Simple Theme layout tweaks */
/* remove image borders */
.typography img {
border: none;
background: none;
}
/* ProductPage */
/* sidebar fix */
.no-sidebar .ProductPage .sidebar {
display: block;
}
.no-sidebar .ProductPage .content-container {
width: 75%;
}
form {
width: 100% !important;
}
label {
display: block;
}
/* Product Holder */
.productSummary, .historySummary {
margin: 0 0 30px;
padding: 0 0 30px;
border-bottom: 1px solid #EEE;
width: 100%;
float: left;
}
.productSummaryImage {
float: left;
/*width: 150px;*/
}
.productSummaryText {
float: left;
}
.product-image img {max-width: 100%; height: auto;}
/* Cart template */
.continueShopping {cursor: pointer;}
@media only screen and (max-width: 420px) {
.productTextContainer {width: 100%;}
.product-image-stack, .product-info-stack {width: 100%;}
.no-sidebar .historySummary .sidebar, .historySummary .full {display: block; width: 100%;}
.productSummaryImage,
.productSummaryText {
width: 100%;
}
}
@media only screen and (max-width: 640px) {
.no-sidebar .ProductPage .content-container {
width: 100%;
}
}
/*** 5 Star ratings ***/
.glyphicon {
color: #bbb;
font-size: 16px;
}
.glyphicon-star {
color: #FCAE00;
}
.small {
font-size: 80%;
}