-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbroccoli.css
93 lines (77 loc) · 1.36 KB
/
broccoli.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
@charset "UTF-8";
@import url('http://fonts.googleapis.com/css?family=Londrina+Shadow');
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
}
header h1 {
font-family: "Londrina Shadow", Verdana, sans-serif;
font-size: 300%;
}
#products {
width: 550px;
column-count: 3;
-moz-column-count: 3;
-webkit-column-count: 3;
border-right: 2px solid #000;
padding-right: 50px;
float: left;
}
#products figure {
border: 1px solid #ccc;
padding: 11px;
margin: 0;
width: 122px;
height: 130px;
}
#products figcaption {
font-size: 75%;
}
#products ul {
list-style: none;
margin: 0;
padding: 0;
padding-left: 20px;
}
#products li {
display: inline-block;
margin-bottom: 15px;
}
input[type=button] {
display: block;
margin: 3px auto;
}
#cart {
background: url('images/cart.png') no-repeat center bottom;
padding-bottom: 140px;
width: 200px;
margin-left: 700px;
font-size: 70%;
}
#cart>* {
margin: 0 10px 0 35px;
}
#cart_contents {
padding: 5px;
border-radius: 10px;
border: 1px solid black;
font-size: 80%;
}
#cart_contents ul {
padding: 0;
padding-left: 1em;
list-style: none;
}
#cart_contents li {
text-indent: -1em;
}
#cart_contents li img {
vertical-align: middle;
margin-left: 3px;
}
/* this code inserts the parens around the quantity */
#cart_contents .quantity:before {
content: "(";
}
#cart_contents .quantity:after {
content: ")";
}