-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhakam.html
154 lines (128 loc) · 4.07 KB
/
hakam.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hakam</title>
<link rel="icon" type="image/x-icon" href="img/Hakam.png">
<style>
.dropbtn {
background-color: #921e07;
color: white;
padding: 16px;
font-size: 16px;
border: none;
}
.dropdown {
position: relative;
display: inline-block;
position:absolute;
left:2vw;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 0.5vw 1vw;
text-decoration: none;
display: block;
line-height: 2;
}
.dropdown-content a:hover {background-color: #ddd;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #b12407;}
Body, .top-container{
background-image: url(img/wood_bg.jpg);
}
body {
margin: 0;
font-family: "Comic Neue", cursive;
}
p, h1, h2, h3, h4, h5, li{
text-shadow: 0.1vw 0.1vw #000000;
}
button, .dropdown-content{
text-shadow: 0.02vw 0.02vw #000000;
font-family: "Noto Sans", cursive;
}
h2 {text-align: center;}
.top-container {
background-color: #f1f1f1;
padding: 30px;
text-align: center;
}
.header {
background: #0d5e1d;
color: #f1f1f1;
padding: 0 20px;
box-sizing: border-box;
height: 100px;
display: flex;
justify-content: center;
position: relative;
align-items: center;
}
.header h2 {
margin: 0;
font-size: 45px;
white-space: nowrap;
}
.sticky {
position: fixed;
top: 0;
width: 100%;
height: 100px; /* Match header height */
z-index: 1000;
}
.sticky + .content {
padding-top: 100px; /* Match header height */
}
.content {
color: #eefcede4;
padding: 16px;
}
</style>
</head>
<body>
<div class="top-container">
<img src="img/Hakam.png" alt="Logo" height="150">
</div>
<div class="header" id="myHeader">
<div class="dropdown">
<button class="dropbtn">more</button>
<div class="dropdown-content">
<a href="">Hakam</a>
<a href="woerterbuch.html">Wörterbuch</a>
<a href="vulkanism.html">Vulkanismus</a>
<a href="bible.html">Manuskript</a>
</div>
</div>
<h2>Hakam</h2>
</div>
<div class="content">
<h4 style="font-size:2.2vw;">Die Flagge</h4>
<p style="font-size:2vw;">Die offizielle Flagge der hakamischen Sprache ist Oben zu sehen. Der Adler symbolisiert die BRD, Das Orange ist die offizielle Farbe, das Blau symbolisiert die Tränen die Fließen, wenn Herr Müller wieder scheiße macht, das Hohenwehrda-Grün symbolisiert die Nähe zum Lietz Internat Hohenwehrda, einer wahren Folterkammer, wenn man so will, aber aus diesem kleinen Kaff kommt die großartige hakamische Sprache. Der Kampf gegen Herr Müller geht weiter, und die hakamische Nation und Kultur wird sich früher oder später durchsetzen</p>
<h4 style="font-size:2.2vw;">Was ist Hakam</h4>
<p style="font-size:2vw;">Hakam ist ein Dialekt, der seinen Ursprung im Klassenraum der 9RG auf dem Schloss Hohenwehrda, sowie im Nebenhaus hat. Es ist mehr als nur ein Slang. Manche Wörter sind auch nur ein Shitpost, und die meisten sind sogar alltagsgeläufig. Die eigene Sprache ist nur Schritt 1. Aus Hakam wird ein kulturell vielfältiges Projekt, das sich früher oder Später als Nation oder Sekte etablieren wird. Das offizielle Maskottchen, ist der Djungelskog: Hier ein Bild:</p>
<img src="img/djungelskog.jpg" height="150">
</div>
<script>
window.onscroll = function() { scrollfunction() };
var header = document.getElementById("myHeader");
var sticky = header.offsetTop;
function scrollfunction() {
if (window.pageYOffset > sticky) {
header.classList.add("sticky");
} else {
header.classList.remove("sticky");
}
}
</script>
</body>
</html>