This repository has been archived by the owner on Jul 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (88 loc) · 1.54 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
html,body{
color: black;
background-color: white;
}
a:link,a:visited{
color: blue;
text-decoration: underline;
}
a:hover{
color: red;
text-decoration: none;
}
#threadlistbox,.thread,.permasagedthread,.post,.postform,#loginform,#navigation,#allthreads,#threadform{
background-color: white;
color: black;
border: 1px solid black;
-moz-border-radius: .5em;
-webkit-border-radius: .5em;
border-radius: .5em;
}
#threadlistbox,.thread,.permasagedthread,.post,.postform,#loginform,#navigation,#allthreads,#threadform{
margin: .5em;
padding: .5em;
}
#threadlistbox,.thread,#navigation,#allthreads,#threadform{
background-color: #f0f8ff;
}
.permasagedthread{
background-color: #e0b0ff; /* mauve, lol */
}
.postbody p,#threadlistnav{
margin: .25em;
}
#threadlistnav{
text-align: right;
}
.threadtitle{
font-size: large;
font-weight: bold;
}
.postheader{
font-size: x-small;
}
.postnum{
font-size: small;
}
.postername{
color: gray;
}
.postertrip{
color: green;
}
.deleted{
color: gray;
}
#adminpanelthreads * form,#adminpanelthreads * form p{
display: inline;
}
.footer{
text-align: center;
font-size: xx-small;
}
label[for|="comment"]{
display: none;
}
blockquote{
color: #01796f;
background-color: #f0f8ff;
}
.image,.nothumb,.commenttext{
display: table-cell;
}
.commenttext{
vertical-align: top;
}
.navarrows{
float: right;
}
.spoilertext, .spoilerbutton:focus {
display:none;
}
.spoilerbutton:focus + .spoilertext {
display:block;
}
:lang(ja){
font-family: ms pgothic, ms ui gothic, mona, sans-serif;
font-size: 12pt;
}