-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (81 loc) · 1.48 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
91
92
93
94
95
96
97
/* Copyright (C) 2010-2021 Lily Anatia Wilson <[email protected]>
* This file is part of tinybb.
*
* tinybb is non-violent software: you can use, redistribute,
* and/or modify it under the terms of the CNPLv6 as found
* in the LICENSE file in the source code root directory or
* at <https://git.pixie.town/thufie/CNPL>.
*
* tinybb comes with ABSOLUTELY NO WARRANTY, to the extent
* permitted by applicable law. See the CNPL for details.
*/
body#mainpage, body#subback {
height: 100%;
width: 100%;
background: #c5ad99;
background-image: url(ba.webp);
color: #000000;
font-family: serif
}
body.threadpage {
background: #efefef;
}
a {
color: #0000ff;
}
a:visited {
color: #660099;
}
a:hover {
color: #ff0000;
}
#titlebox, #threadbox, #threadform, #threadlist, #subback p {
background: #ccffcc;
border: 0.5em ridge #ccffcc;
padding: 0.5em;
width: 90%;
margin-top: 1em;
margin-bottom: 1em;
}
#titlebox {
text-align: center;
}
#title {
font-size: 3em;
font-family: monospace;
}
#threadlist {
list-style-position: inside;
}
.thread {
background: #efefef;
border: 0.5em ridge #efefef;
padding: 0.5em;
width: 90%;
margin-top: 1em;
margin-bottom: 1em;
}
h1 {
color: #ff0000;
}
.post {
margin-top: 1em;
margin-bottom: 1em;
}
.postnum {
font-weight: bold;
display: inline;
}
.postdate {
font-size: 60%;
display: inline;
}
.postbody {
padding-left: 1em;
font-family: monospace;
white-space: pre;
}
blockquote {
margin: inherit;
font-style: italic;
}