-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenneagram.html
More file actions
107 lines (95 loc) · 3.59 KB
/
enneagram.html
File metadata and controls
107 lines (95 loc) · 3.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Order of the Enneagram</title>
<link rel="stylesheet" href="https://unpkg.com/xp.css" />
<style>
body {
background-image: url('./img/bliss-winxp.jpg');
background-size: cover;
background-position: center;
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: "Tahoma", sans-serif;
}
.window {
width: 90vw;
max-width: 606px;
height: auto;
display: flex;
flex-direction: column;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.window-body {
flex: 1;
padding: 10px;
display: flex;
flex-direction: column;
overflow-y: auto;
gap: 10px;
background: #ece9d8;
}
.fun-box {
border: 2px groove #ccc;
background: white;
padding: 10px;
flex: 1;
overflow: auto;
}
.xp-button {
background: #e0e0e0;
border: 1px solid #808080;
padding: 3px 10px;
cursor: pointer;
font-weight: bold;
}
.xp-button:active {
background: #c0c0c0;
border-top: 1px solid #404040;
border-left: 1px solid #404040;
}
img {
display: inline-block;
margin: auto;
}
</style>
</head>
<body>
<div class="window">
<div class="title-bar">
<div class="title-bar-text">enneagram.exe</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close" id="closeBtn"></button>
</div>
</div>
<div class="window-body">
<div class="fun-box" id="output">
<b>hello!</b><br><br>
are you here because you're interested in the group?<br>
or did your minecraft server get griefed by me/us?<br>
or, (even worse) do you want our meteor addon?<br>
<hr>
<b>well too bad!</b>
<small>here's the <a href="./enneabot.html" target="_blank" rel="noopener noreferrer">selfbot commands</a></small>
<hr>
<h3>Enneagram</h3>
<small>From <a href="https://polytope.miraheze.org" target="_blank" rel="noopener noreferrer">Polytope Wiki</a></small>
The <b>enneagram</b> is a non-convex polygon with 9 sides. It is created by taking the first stellation of an enneagon. A regular enneagram has equal sides and equal angles.
It is one of two regular 9-sided star polygons, with the other being the great enneagram. The name "enneagram" is often used to describe either of these two shapes.
<h4>External links</h4>
<ul>
<li>Bowers, Jonathan. <a href="http://www.polytope.net/hedrondude/polygons.htm" target="_blank" rel="noopener noreferrer">"Regular Polygons and Other Two Dimensional Shapes"</a>.</li>
<li>Wikipedia contributors. <a href="https://en.wikipedia.org/wiki/Enneagram_(geometry)" target="_blank" rel="noopener noreferrer">"Enneagram (geometry)"</a>.</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>