forked from elwinaugustin/e3aevents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet1.css
More file actions
100 lines (79 loc) · 1.04 KB
/
Copy pathstylesheet1.css
File metadata and controls
100 lines (79 loc) · 1.04 KB
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
body {
font-family: sans-serif;
margin: 0;
padding: 0;
}
h1 {
font-size: 2em;
margin-top: 0;
}
h2 {
font-size: 1.5em;
margin-top: 0;
}
h3 {
font-size: 1.25em;
margin-top: 0;
}
p {
font-size: 1em;
line-height: 1.5em;
}
a {
color: #000;
text-decoration: none;
}
a:hover {
color: #333;
}
.header {
background-color: #fff;
padding: 20px;
}
.header h1 {
text-align: center;
}
.header a {
float: right;
}
.main-content {
padding: 20px;
}
.sidebar {
float: left;
width: 20%;
padding: 20px;
}
.product-list {
list-style: none;
padding: 0;
}
.product-list li {
margin-bottom: 10px;
}
.product-list .product-image {
float: left;
width: 100px;
height: 100px;
}
.product-list .product-details {
float: left;
margin-left: 10px;
}
.product-list .product-details h3 {
margin-top: 0;
}
.product-list .product-details p {
margin-bottom: 0;
}
.product-list .product-price {
float: right;
}
.footer {
background-color: #fff;
padding: 20px;
text-align: center;
}
.footer p {
margin-top: 0;
}