-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
151 lines (133 loc) · 5.32 KB
/
index.html
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
<head>
<title>DBolical</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="moddb, indiedb, dbolical, games, mods, addons, customisation, maps, models, network, community, publishing, investment" />
<meta name="description" content="Gaming communities are our thing, we run IndieDB for independent games, ModDB for user-created game content and modularity.games our publishing label." />
<meta name="robots" content="index,follow"></meta>
<meta name="robots" content="all"></meta>
<link rel="shortcut icon" href="favicon.ico" />
<script src="https://code.jquery.com/jquery-1.10.1.min.js"></script>
<style type="text/css">
body {
background: #000;
color: #000;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 62.5%;
padding: 0;
margin: 0;
line-height: 1.5em;
}
p {
font-size: 1em;
}
a {
color: #c00;
text-decoration: underline;
}
a:hover {
color: #f33;
text-decoration: none;
}
img {
display: none;
max-width: 80%;
height: auto;
}
.catchcry { font-size: 1.5em; display: none; }
.defaultbody div { background: #fff; }
.defaultbody .defaultcatchcry { display: inline; }
.defaultbody .default { display: inline; }
.moddbbody div { background: #c00; background: linear-gradient(-135deg, #900 0%,#f00 100%); }
.moddbbody a { color: #fff; }
.moddbbody a.moddb, .moddbbody a:hover { color: #f99; text-decoration: none; }
.moddbbody .defaultcatchcry { display: none; }
.moddbbody .moddbcatchcry { display: inline; }
.moddbbody .moddblogo { display: inline; }
.moddbbody .default { display: none; }
.indiedbbody div { background: #390; background: linear-gradient(-135deg, #390 0%,#6f0 100%); }
.indiedbbody a { color: #fff; }
.indiedbbody a.indiedb, .indiedbbody a:hover { color: #9f6; text-decoration: none; }
.indiedbbody .defaultcatchcry { display: none; }
.indiedbbody .indiedbcatchcry { display: inline; }
.indiedbbody .indiedblogo { display: inline; }
.indiedbbody .default { display: none; }
.modularitybody div { background: #0e2e31; background: linear-gradient(-135deg, #0e2e31 0%,#030d0e 100%); }
.modularitybody a { color: #fff; }
.modularitybody a.modularity, .modularitybody a:hover { color: #f8e800; text-decoration: none; }
.modularitybody .defaultcatchcry { display: none; }
.modularitybody .modularitycatchcry { color: #f8e800; display: inline; }
.modularitybody .modularitylogo { display: inline; }
.modularitybody .default { display: none; }
.contactbody div { background: #fff; }
</style>
</head>
<body class="defaultbody">
<div align="center">
<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="100%" height="100%" valign="middle" align="center">
<p style="text-align: center;">
<img src="logo.png" width="600" height="142" alt="DBolical" class="default" style="margin: 32px 0" />
<a href="https://www.moddb.com"><img src="logos/moddb.png" width="467" height="206" alt="ModDB" class="moddblogo" /></a>
<a href="https://www.indiedb.com"><img src="logos/indiedb.png" width="428" height="206" alt="IndieDB" class="indiedblogo" /></a>
<a href="https://modularity.games"><img src="logos/modularity.png" width="662" height="206" alt="Modularity Games Publishing" class="modularitylogo" /></a>
<br /><br />
<span class="catchcry defaultcatchcry indiedbcatchcry moddbcatchcry">Community & collaboration</span>
<span class="catchcry modularitycatchcry">Publishing & investment</span>
<br />
<span class="catchcry defaultcatchcry">say hello to the team</span>
<span class="catchcry moddbcatchcry">for mod developers</span>
<span class="catchcry indiedbcatchcry">for indie game developers</span>
<span class="catchcry modularitycatchcry">for mod-friendly games</span>
<br /><br />
<a href="https://www.moddb.com" class="moddb">ModDB</a> -
<a href="https://www.indiedb.com" class="indiedb">IndieDB</a> -
<a href="https://modularity.games" class="modularity">modularity</a> -
<a href="mailto:[email protected]" class="contact">Contact</a>
</p>
</td>
</tr>
</table>
</div>
<script type="text/javascript" charset="UTF-8"><!--
$(document).ready(function() {
var rainbowyay,
site = "";
$(".moddb,.indiedb,.modularity,.contact,.default").mouseenter(function(e){
resetDefault();
clearTimeout(rainbowyay);
if($(this).attr("class") == "default") {
rainbow();
} else {
site = $(this).attr("class");
$(".defaultbody").addClass(site+"body");
}
});
resetDefault = function() {
$(".defaultbody").removeClass("moddbbody").removeClass("indiedbbody").removeClass("modularitybody").removeClass("contactbody");
};
function rainbow() {
resetDefault();
if(site == "moddb") {
site = "indiedb";
} else if(site == "indiedb") {
site = "modularity";
} else {
site = "moddb";
}
$(".defaultbody").addClass(site+"body");
rainbowyay = setTimeout(function() { rainbow(site); }, 5000);
}
rainbow();
});
//-->
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NW6PGZ6TVE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NW6PGZ6TVE');
</script>
</body>
</html>