These should only apply on servers.minetest.net, not when the server list is embedded into another page.
23 lines
333 B
HTML
23 lines
333 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Minetest server list</title>
|
|
<style>
|
|
body {
|
|
font-family: Roboto, Ubuntu, "Segoe UI", sans;
|
|
}
|
|
a {
|
|
color: #336B87;
|
|
}
|
|
a:visited {
|
|
color: #336BA1;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="server_list"></div>
|
|
<script src="list.js"></script>
|
|
</body>
|
|
</html>
|