blob: 3b0f147b5cc5f5d677df7bb9dd8a9776c6d83890 (
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
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
|
body {
font-family: 'Times New Roman', serif;
background: linear-gradient(135deg, #3a0088, #9e4fff);
background-image: url("/images/yummywater.png");
color: #f5f5f5;
}
main {
max-width: 800px;
margin: auto;
}
a {
color: #ff77e9;
text-shadow: 2px 2px 0px #00ff99;
}
a:visited {
color: #ff4da6;
}
a:hover {
color: #00f9ff;
text-shadow: 2px 2px 0px #ff00ff;
}
img {
max-width: 100%;
filter: contrast(1.1) hue-rotate(20deg);
}
header h1 {
text-align: center;
font-family: 'Courier New', monospace;
color: #ffe066;
text-shadow: 3px 3px 0px #00ff99;
}
footer {
text-align: center;
clear: both;
color: #ffe066;
text-shadow: 2px 2px 0px #ff00ff;
}
/* For TAGLIST.HTML */
.taglist {
text-align: center;
clear: both;
}
/* For NEXTPREV.HTML */
#nextprev {
/* The container for both the previous and next articles. */
}
#prevart {
float: left;
text-align: left;
}
#nextart {
float: right;
text-align: right;
}
#nextart, #prevart {
max-width: 33%;
color: #ff77e9;
text-shadow: 2px 2px 0px #00ff99;
}
/* Additional Vaporwave Touch */
body::after {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.1);
pointer-events: none;
}
|