blob: 0650a9a6e8e38cc35064a556a794c92623121ed4 (
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
|
body {
text-align: center;
background: #111;
color: #CCC;
width: 400px;
margin: auto;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
*::-moz-selection {
color: #CCC;
background: #595;
}
*::selection {
color: #CCC;
background: #195;
}
footer {
height: 20px;
}
a, a:visited {
color: #195;
}
input[type="text"] {
background: #CCC;
color: #111;
border: none;
border-radius: 2px;
}
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]:checked + label {
background: #595;
}
label.checkbox-wrapper {
height: 16px;
width: 16px;
margin: 4px;
background: #CCC;
display: inline-block;
margin-bottom: -3px;
border-radius: 3px;
}
.no-highlight {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.box::before {
height: 20px;
display: block;
content: "";
background: #195;
margin-bottom: 10px;
}
.box {
background: #222;
margin: 20px 0;
border-radius: 3px;
padding: 10px;
}
.break {
word-wrap: break-word;
}
#header {
color: #195;
font-size: 80px;
font-weight: 500;
line-height: 1;
margin: 20px 0 40px;
}
#anime {
height: 300px;
position: fixed;
bottom: 0px;
right: 0px;
z-index: -1;
}
#anime:hover {
-webkit-filter: brightness(120%);
filter: brightness(120%);
}
#upload {
background: #195;
color: #EEE;
width: 150px;
height: 50px;
display: inline-block;
border-radius: 3px;
line-height: 3;
border: none;
margin: 10px;
}
|