Skip to content

Commit dd604f7

Browse files
committed
init
1 parent d08a24a commit dd604f7

6 files changed

Lines changed: 87 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
v.0.1.8/
2+
docindex.html
3+
docstyle.css

.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

favicon.ico

313 KB
Binary file not shown.

index.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<title>TouchGuild</title>
5+
<meta name="description" content="TouchGuild is a powerful Node.js module for interfacing with Guilded.">
6+
<meta name="keywords" content="touchguild, library, documentation, index, guilded, api, npm, module">
7+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
8+
<link rel="icon" type="image/x-icon" href="favicon.ico">
9+
<link rel="stylesheet" href="style.css">
10+
</head>
11+
<body>
12+
<div class="main">
13+
<div class="icon">
14+
<img class="fullicon" src="tg-fullicon.png">
15+
</div>
16+
<div class="links">
17+
<h2 style="text-align: center;">
18+
<a href="https://github.com/DinographicPixels/TouchGuild">GitHub</a>
19+
<span class="spacer">|</span>
20+
<a href="https://npmjs.com/package/touchguild">NPM</a>
21+
<span class="spacer">|</span>
22+
<a href="https://docs.touchguild.com/">Documentation</a>
23+
<span class="spacer">|</span>
24+
<a href="https://guide.touchguild.com/">Guide</a>
25+
</div>
26+
</h2>
27+
</div>
28+
</body>
29+
</html>

style.css

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
body {
2+
background-color: rgb(56, 47, 47);;
3+
}
4+
5+
.main {
6+
display: flex;
7+
justify-content: center;
8+
align-items: center;
9+
flex-direction: column;
10+
background: rgb(56, 47, 47);
11+
position: fixed;
12+
block-size: 100%;
13+
inline-size: 100%;
14+
}
15+
16+
.icon {
17+
display: flex;
18+
justify-content: center;
19+
align-items: center;
20+
inline-size: 80%;
21+
block-size: 70%;
22+
}
23+
24+
.fullicon {
25+
width: 60%;
26+
}
27+
28+
.links {
29+
display: flex;
30+
flex-direction: row;
31+
align-items: flex-start;
32+
justify-content: center;
33+
align-content: center;
34+
inline-size: 100%;
35+
block-size: 30%;
36+
}
37+
38+
.links a {
39+
font-family: "Montserrat", sans-serif;
40+
color: white;
41+
}
42+
43+
.spacer {
44+
margin-right: 1rem;
45+
margin-left: 1rem;
46+
color: whitesmoke;
47+
}
48+
49+
@media (max-width:450px){
50+
.fullicon {
51+
width: 100%;
52+
}
53+
}
54+

tg-fullicon.png

75 KB
Loading

0 commit comments

Comments
 (0)