forked from erikwiffin/0.30000000000000004
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
57 lines (53 loc) · 808 Bytes
/
styles.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
body {
padding: 0px;
margin: 0px;
font-family: sans-serif;
font-size: 12px;
background: #9CF url('/white-to-blue.gif') top left repeat-x;
}
div {
width: 580px;
margin: 30px auto;
border: 3px solid #000;
background: #FFF;
border-radius: 15px;
-moz-border-radius: 15px;
padding: 5px 10px;
}
table {
width: 800px;
margin: 10px auto;
border: 3px solid #000;
background: #FFF;
border-radius: 15px;
-moz-border-radius: 15px;
padding: 5px;
}
th {
font-size: 2em;
}
td {
border-top: 3px solid #CCC;
padding: 5px 2px;
max-width: 300px;
overflow: auto;
}
td:hover {
border-top: 3px solid #9CF;
}
.comment {
font-style: italic;
color: #666;
border-top: none !important;
}
code,
.comment code {
font-style: normal;
color: #000;
}
pre {
margin: 0;
}
p {
margin: 0;
}