blob: 49e6fffe95bfb6b321ff3729c7dbbcf7502fe9f0 (
plain) (
blame)
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
|
/*@import url("/times.css");*/
:root {
image-rendering: pixelated;
font-family: "Times New Roman";
}
p {
font-size: 15px;
}
h3 {
font-size: 18px;
}
/* --- LOGO --- */
#logo {
position: relative;
display: none;
}
#logo > :first-child {
color: #000;
position: absolute;
font-weight: 700;
filter: drop-shadow(0px 0px 2px #000) drop-shadow(0px 0px 2px #000) drop-shadow(0px 0px 2px #000) drop-shadow(0px 0px 3px #f77) drop-shadow(0px 0px 2px #f00);
}
#logo > :last-child {
color: #fff;
position: absolute;
}
/* --- BORDER --- */
.border {
border-image-slice: 6 5 5 6 fill;
border-image-width: 6px 5px 5px 6px;
border-image-outset: 5px 5px 5px 5px;
border-image-repeat: stretch stretch;
border-image-source: url("data:image/gif;base64,R0lGODdhDAAMAHcAACH5BAgKAAAALAAAAAAMAAwAgiIgNEUoPGY5MY9WO9mgZu7DmgAAAAAAAAMrGLq89DCCQIa9VsyKr6YWIALZFj5BCQ4AUaTDxzEq18XmjQdC7/+joBCQAAA7");
border-style: solid;
padding: 0px
}
.border > hr {
border-image-slice: 1 1 5 1;
border-image-width: 1px 1px 5px 1px;
border-image-outset: 0px 4px 0px 4px;
border-image-repeat: stretch stretch;
border-image-source: url("data:image/gif;base64,R0lGODdhAwAGAHcAACH5BAgKAAAALAAAAAADAAYAgSIgNEUoPI9WO9mgZgIHjIWZwDBRAAA7");
border-style: solid;
border-width: 1px 1px 5px 1px;
margin: 0px;
margin-top: 3px;
}
.border > h3:first-child {
margin: 0px;
font-weight: bold;
}
.border > summary > h3:first-child {
margin: 0px;
margin-left: 8px;
font-weight: bold;
display: inline;
border-image-slice: 1 0 1 6;
border-image-width: 1px 0px 1px 6px;
border-image-outset: 0px 0px 0px 6px;
border-image-repeat: stretch stretch;
border-image-source: url("data:image/gif;base64,R0lGODdhBgAEAKIAACIgNEUoPGY5MY9WO9mgZu7DmgAAAAAAACH5BAgKAAAALAAAAAAGAAQAAAMLCLMAsQOQxyYMIQEAOw==");
border-left-style: solid;
box-sizing: border-box;
padding-top: 4px;
padding-bottom: 5px;
}
.border > summary {
margin-left: 5px;
height: 21px;
}
.border > summary::marker {
color: #663931;
}
|