-
Notifications
You must be signed in to change notification settings - Fork 2
/
credits.html
94 lines (85 loc) · 2.11 KB
/
credits.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
<!DOCTYPE html>
<html>
<head>
<title>Dramabar Credits</title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<style>
:root{
font-size:20px;
font-family:Arial;
}
#nav li {
list-style: none;
float: left;
margin: 1rem 2.5rem;
flex: 1 1 auto;
}
#nav {
display: flex;
flex-wrap: wrap;
margin: 0 auto;
margin-bottom: 2em;
width: 80%;
background: #000000;
box-shadow: 0px 0px 4px rgba(0,0,0,0.55);
border-radius: 3px;
padding: 0;
}
#menu {
float: right;
margin-right: 12.5%;
margin-top: 2em;
}
#dramabar_logo {
width: 100%;
height: 32px;
border-width: 2px;
border-radius: 5px;
border-style: solid;
border-color: #98C8FA;
}
.nav_text {
text-decoration: none;
color: #ffffff;
font-size: 1.5rem;
transition: all 0.25s;
}
.nav_text:hover {
transform: translate(1px,2px);
transition: all 0.15s;
display: inline-block;
color: #98C8FA;
}
.content {
margin-left: auto;
margin-right: auto;
width: 70%;
display: flex;
flex-direction: column;
justify-content: center;
}
</style>
<script>
</script>
</head>
<body>
<ul id="nav">
<li><a class="nav_text" href="/home">Dramabar</a></li>
<li><a class="nav_text" href="https://metalab.at/wiki/Dramabar">Wikipage</a></li>
<li><a class="nav_text" href="https://github.com/Metalab/dramabar">Source on GitHub</a></li>
<li><a class="nav_text" href="/credits">Credits</a></li>
</ul>
<div class="content">
<h1 style="text-align:center;">Credits</h1>
<p1>
Credits an overflo für den ursprünglichen Aufbau und den ersten funktionalen Code<br/>
Credits an LuGam für die Code und Feature Erweiterung, sowie der Website<br/>
Credits an Anlumo, sowie Phoenix für das Beantworten einiger ESP und Website related Fragen<br/>
Credits an Paul, Nini und weitere (ich weiß leider nicht mehr wer mir alles geholfen hat) für Website related Hilfe<br/><br/>
Projektdurchführung: LuGam (Übernommen von overflo)<br/><br/><br/>
Gesamtes Projekt ohne jeglichem Vorwissen von HTML, CSS und der Benutzung des ESP Moduls durchgeführt (PLS no bashing, I know some of the code isn't pretty :P)
</p1>
</div>
</body>
</html>