summaryrefslogtreecommitdiff
path: root/themes/vapor/static/style.css
blob: 074dec26beb869a9d267506cd1cee16677b18bb9 (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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
body {
    font-family: 'Times New Roman', serif;
    background: linear-gradient(to right, #3cbede, #9e4fff);
    background: linear-gradient(to right, rgba(60, 190, 222, 0.8), rgba(158, 79, 255, 0.8));
    position: relative;
    overflow: hidden;
    color: #f5f5f5;
}

.center {
    color: #00d8ff;
    text-shadow: 2px 2px 0px #ff00ff;
}

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;
    animation: float 3s ease-in-out infinite, rainbowText 8s linear infinite;
}

/* Animation to make the header float up and down */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation to change the text color through a rainbow of vaporwave neon pastels */
@keyframes rainbowText {
    0% {
        color: #ffe066;
        text-shadow: 3px 3px 0px #00ff99;
    }
    16% {
        color: #ff77e9;
        text-shadow: 3px 3px 0px #00f9ff;
    }
    32% {
        color: #ff4da6;
        text-shadow: 3px 3px 0px #ff00ff;
    }
    48% {
        color: #00f9ff;
        text-shadow: 3px 3px 0px #ff77e9;
    }
    64% {
        color: #ffe066;
        text-shadow: 3px 3px 0px #ff4da6;
    }
    80% {
        color: #ff00ff;
        text-shadow: 3px 3px 0px #00ff99;
    }
    100% {
        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;
}