-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (73 loc) · 1.24 KB
/
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
body {
margin: 0;
padding: 0;
background: #fefefe;
}
h1 {
text-align: center;
}
h1, h2 {
font-family: "Bitter", Georgia, Times, "Times New Roman", serif;
font-weight: normal;
color: #252525;
}
p {
margin: 5px 0;
font-weight: normal;
}
p, li {
font-family: 'Source Sans Pro';
}
hr {
border: 0;
height: 1px;
background: #333;
background-image: -webkit-linear-gradient(left, #ccc, #333, #ccc);
background-image: -moz-linear-gradient(left, #ccc, #333, #ccc);
background-image: -ms-linear-gradient(left, #ccc, #333, #ccc);
background-image: -o-linear-gradient(left, #ccc, #333, #ccc);
}
.container {
margin: 0 auto;
width: 70%;
}
.intro {
margin: 30px 0px 30px 45px;
}
.items {
margin: 0 auto;
width: 90%;
clear: both;
}
.item {
margin-bottom: 25px;
position: relative
}
.item .title {
font-weight: normal;
}
.item .product {
float: left;
width: 450px;
margin-right: 20px;
}
.item .details {
width: 350px;
}
.item .details p {
margin: 10px 0;
width: 300px;
}
.item .tweet {
position: absolute;
bottom: 5px;
}
.sold {
text-decoration: line-through
}
.left {
float: left;
}
.clear {
clear: both;
}