-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
113 lines (100 loc) · 2.07 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
113
body {
background-color: rgb(184, 134, 245);
cursor: url('cursors/wii-pointer-ccw.cur'), auto;
}
h1{
margin-top: 5px;
font-family: Comic Sans ms;
text-align: center;
}
h2{
margin-top: 5px;
margin-bottom: 5px;
font-family: 'pixter-granularregular';
src: url('font/pixter_granular-webfont.woff2') format('woff2'),
url('font/pixter_granular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
text-align: center;
}
a:link {
color: rgb(91, 206, 250);
text-decoration: none;
}
a:visited {
color: rgb(115, 0, 255);
text-decoration: none;
}
a:hover {
color: rgba(0, 0, 0, 0);
text-decoration: underline;
cursor: url('cursors/wii-pointer-blue-ccw.cur'), auto;
}
hr {
color: rgb(115, 0, 255);
max-width: 1100px;
width: 90%;
margin: 15 100;
text-align: left;
}
nav{
text-align: center;
}
img.wiipng{
display: block;
width: 200px;
height: 200px;
margin: auto;
}
@font-face {
font-family: 'pixter-granularregular';
src: url('font/pixter_granular-webfont.woff2') format('woff2'),
url('font/pixter_granular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
p {
font-family: 'pixter-granularregular';
}
nav {
font-family: 'pixter-granularregular';
}
a[href^="http"]:not(:has(img)) {
background-image: url(assets/external-link.svg);
background-repeat: no-repeat;
background-position: top right;
padding-right: 0.6em;
}
.navtext * {
all: initial;
font-family: 'pixter-granularregular';
}
.flashbang {
width: 32px;
height: 32px;
margin: 500px 0 0;
text-align: left;
}
#onekocheck:checked ~ #oneko {
display: none;
}
#onekocheck {
display: none
}
#onekocheck + label {
content: url("/assets/oneko/oneko sit button.png");
width: 40px;
image-rendering: pixelated;
position: fixed;
top: 10px;
right: 10px;
}
#onekocheck:hover + label {
content: url("assets/oneko/oneko sit button hover.png");
}
#onekocheck:checked + label {
content: url("assets/oneko/oneko sleep button.png");
}
#onekocheck:checked:hover + label {
content: url("assets/oneko/oneko sleep button hover.png");
}