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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
/* ******************** */
/* line 5, ../src/splash.sass */
* {
padding: 0;
margin: 0;
// font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;
font-family: Georgia, serif;
font-size: 13px;
}
/* line 11, ../src/splash.sass */
a {
color: #bb0000;
}
/* line 13, ../src/splash.sass */
a:hover {
color: red;
}
/* line 15, ../src/splash.sass */
section {
display: block;
margin: 0 10px 10px 10px;
}
/* line 18, ../src/splash.sass */
header {
margin: 10px 10px 0px 10px;
width: 100%;
}
/* line 22, ../src/splash.sass */
header h1 {
font-weight: normal;
font-size: 36px;
margin-top: -6px;
padding: 0 0 0 17px;
}
header h2 {
font-weight: normal;
font-size: 16px;
color: #333;
padding: 10px 0 20px 20px;
}
/* line 26, ../src/splash.sass */
#aboutMode {
padding: 0 10px 10px 20px;
width: 400px;
}
/* line 29, ../src/splash.sass */
#aboutMode p {
padding-bottom: 20px;
}
/* line 31, ../src/splash.sass */
#aboutMode p b {
font-size: 24px;
}
/* line 33, ../src/splash.sass */
#aboutMode h2 {
font-size: 14px;
}
/* line 35, ../src/splash.sass */
#aboutMode ul {
padding-bottom: 20px;
}
/* line 37, ../src/splash.sass */
#aboutMode ul li {
padding: 10px 0 0 0;
list-style-type: none;
}
/* line 40, ../src/splash.sass */
footer {
position: fixed;
right: 10px;
bottom: 10px;
text-align: right;
}
/* line 44, ../src/splash.sass */
body {
overflow-x: hidden;
overflow-y: scroll;
}
/* line 47, ../src/splash.sass */
html {
background-image: url(/img/bunnyhead-sized.jpg);
background-position: bottom right;
background-repeat: no-repeat;
background-attachment: fixed;
width: 100%;
height: 100%;
}
/* line 54, ../src/splash.sass */
#bg {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
margin: 0;
background-color: #050408;
}
/* line 62, ../src/splash.sass */
button {
-moz-border-radius: 20px;
border-radius: 20px;
border: 0;
color: white;
background-color: #880011;
padding: 5px;
}
/* line 68, ../src/splash.sass */
button:hover, button:focus {
background-color: #bb0022;
outline: 0;
}
/* line 71, ../src/splash.sass */
button:active {
background-color: #ff0044;
}
/* line 73, ../src/splash.sass */
#welcome {
-moz-border-radius: 20px;
border-radius: 20px;
font-family: georgia, serif;
text-align: center;
color: #333333;
position: absolute;
top: 10px;
right: 10px;
max-width: 250px;
font-size: 13px;
padding: 10px;
background-color: #f8f8f8;
border: 1px solid #ddd;
}
/* line 85, ../src/splash.sass */
#welcome b {
text-decoration: underline;
}
/* line 87, ../src/splash.sass */
#welcome b, #welcome u {
cursor: pointer;
}
/* line 89, ../src/splash.sass */
#welcome * {
color: #333388;
font-weight: bold;
font-family: georgia, serif;
font-size: 13px;
}
/* line 94, ../src/splash.sass */
#welcome *:hover {
color: #1166ff;
}
/* line 96, ../src/splash.sass */
#msg {
-moz-border-radius: 20px;
border-radius: 20px;
position: absolute;
top: 53px;
right: 10px;
width: 250px;
background-color: #eeeeee;
color: #333333;
padding: 10px;
font-size: 13px;
font-family: serif;
opacity: 0.7;
}
#illcredit
{
position: fixed;
bottom: 10px;
left: 10px;
padding: 0; margin: 0;
}
#userViewHelper
{
color: #ababab;
}
|