-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (64 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="color-scheme" content="dark">
<meta name="theme-color" content="#383D48">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SteamRE</title>
<style>
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
background-color: #383D48;
display: flex;
align-items: center;
justify-content: center;
font-family: system-ui, sans-serif;
color: #f1f5fe;
}
a {
color: #afd4ff;
}
a:hover,
a:focus {
color: #fff;
}
.center {
margin: 20px;
font-size: 18px;
max-width: 700px;
}
.logo {
max-width: 546px;
width: 100%;
height: auto;
}
</style>
<meta name="description" content="SteamRE maintains a SteamKit2 .NET library designed to interoperate with Valve's Steam network.">
<meta property="og:description" content="SteamRE maintains a SteamKit2 .NET library designed to interoperate with Valve's Steam network.">
<meta property="og:title" content="SteamRE">
<meta property="og:image" content="https://opensteamworks.org/logo_square.png">
<link rel="image_src" href="https://opensteamworks.org/logo_square.png">
<link rel="canonical" href="https://opensteamworks.org/">
</head>
<body>
<div class="center">
<img class="logo" src="logo.png" alt="Open Steamworks" width="546" height="96">
<p>
<b>SteamRE</b> maintains a <a href="https://github.com/SteamRE/SteamKit"><b>SteamKit2</b></a> .NET library designed to interoperate with Valve's Steam network.
It aims to provide a simple, yet extensible, interface to perform various actions on the network.
</p>
<p>
We also maintain a <a href="https://github.com/SteamRE/DepotDownloader"><b>DepotDownloader</b></a> program which
allows downloading depots without using the Steam client.
</p>
<p>
<a href="https://github.com/SteamRE">View SteamRE on GitHub</a>
</p>
</div>
</body>
</html>