-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmain.css
More file actions
65 lines (54 loc) · 1.1 KB
/
main.css
File metadata and controls
65 lines (54 loc) · 1.1 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
/*
main.css
*/
body {
font-family: Lucida Grande, Tahoma, sans-serif; /* default page font */
background: #fff;
margin: 0; /* shorthand for all margins = 0 */
padding: 0; /* no padding */
}
div#mainColumn {
width: 800px;
margin: 0 auto;
}
/* reasonable margin defaults */
p, h1, h2, h3, h4, h5, h6, li {
margin: 1ex 0;
}
/* testimonials */
#sidebar {
float:right;
width: 250px;
font-family: Lucida Grande, Tahoma, sans-serif;
border: solid 1px #999;
margin: 0 3px 5px 3px;
}
#sidebar p.title {
background-color: #333;
color: #f9f9f9;
text-align: center;
padding: 2px 0 2px 0;
margin: 0;
}
div.testimonial p.testimonial {
color: #600000;
margin: 0 1ex 0 1ex;
font-size: 85%;
}
div.testimonial p.byline {
color: #606060;
font-family: georgia, serif;
font-style: italic;
margin: 0 1ex;
text-align: right;
font-size: 85%;
}
div.testimonial {
border-top: solid 1px black;
padding-top: 1ex;
}
#sidebar p.title + div.testimonial {
margin-top: 0;
padding-top: 0;
border: none;
}