-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
116 lines (111 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>PenguinMod - Library</title>
<style>
* {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
min-width: 400px;
}
.nav-bar {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 3rem;
background: #00c3ff;
display: flex;
flex-direction: row;
align-items: center;
}
.nav-bar a:not(.home-redirect) {
margin: 0 8px;
height: 100%;
}
.nav-bar button {
height: 100%;
padding: 8px 12px;
background: transparent;
color: white;
font-weight: bold;
font-size: 0.75rem;
border: 0;
margin: 0;
cursor: pointer;
}
.nav-bar button:hover {
background: rgba(0, 0, 0, 0.125);
}
.home-redirect {
height: 80%;
margin-left: 4px;
}
.home-redirect > img {
height: 100%;
}
.nav-margin {
width: 100%;
height: 3rem;
}
.view-files {
padding: 8px;
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
}
.view-files img {
margin-bottom: 6px;
width: 20px;
}
.view-files p {
margin-block: 0;
}
</style>
</head>
<body>
<div class="nav-bar">
<a class="home-redirect" href="https://penguinmod.com">
<img src="navicon.png" alt="Icon">
</a>
<a href="./">
<button>
Home
</button>
</a>
<a href="./files">
<button>
Files
</button>
</a>
<a href="./emojis">
<button>
Emojis
</button>
</a>
<a href="https://github.com/PenguinMod/PenguinMod-ObjectLibraries">
<button>
GitHub
</button>
</a>
</div>
<div class="nav-margin"></div>
<h1>PenguinMod Object Libraries</h1>
<p>This site contains all PenguinMod sounds, costumes or other items that are added to the library.</p>
<p>To add an item to one of these libraries, feel free to contribute to the <a href="https://github.com/PenguinMod/PenguinMod-ObjectLibraries">GitHub repository.</a></p>
<br>
<p><b>Note: All new sounds & costumes MUST be Public Domain (creative commons 0 or other public licenses) or MIT licensed. There are no exceptions.</b></p>
<p>If you make the content yourself and upload it here, note that your content can be used, sold and modified without your permission required or credits required.</p>
<br>
<p>Please check your sources to confirm the content is allowed on PenguinMod. For example, PenguinMod gets sounds from <a href="https://freesound.org">freesound.org</a> under the Creative Commons 0 License.</p>
<br>
<a href="https://library.penguinmod.com/files">
<button class="view-files">
<img src="folder.svg" alt="Icon">
<p>View Library Files</p>
</button>
</a>
</body>
</html>