blob: 5a3d7ae9918531d6467c4b1332b21f695e50cc11 (
plain)
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
|
.container {
background-color: #fff;
}
body {
color: #444;
}
code {
border:1px dashed #E1E1E1;
color:#333344;
background:#FAFAFA;
font-family:monospace;
overflow:auto;
font-size:11px;
padding:0.2em;
}
a, a:visited {
color: #444;
}
a:hover {
color: #000;
text-decoration: none;
}
.un-bulleted {
list-style: none;
}
.guestbook-form-container {
width: 500px
}
.message {
font-size: 110%;
width: 500px;
height: 40px;
margin-bottom: 10px;
}
.post-message {
clear: both;
}
.date {
color: #ccc;
font-size: 90%;
}
|