-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (91 loc) · 2.79 KB
/
index.html
File metadata and controls
110 lines (91 loc) · 2.79 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
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="/icons/PT.svg" />
<link rel="stylesheet" href="src/main.css"/>
<link rel="stylesheet" href="src/styler.css"/>
<title>Pinpoint Tools</title>
</head>
<body>
<header>
<p style="font-size: 25px;">
<!-- <img src="/icons/PT.svg" width=25 height=25 alt="Pinpoint Tools Logo"> -->
Pinpoint Tools
</p>
<nav id="mainNavi"></nav>
</header>
<main id="content">
<!-- Page content will be loaded here -->
</main>
<footer>
<a href="https://github.com/PinpointTools">Github</a>
<a href="https://discord.gg/VQBDWSSnRA">Discord</a>
<p>
(c) 2026 - Pinpoint Tools Team <br />
MIT License
</p>
</footer>
<script src="src/router.js" type="module"></script>
</body>
<style>
#content {
/* transform: translateY(-80px); */
width: 100%;
/* margin-top: -80; */
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
backdrop-filter: blur(10px);
background-color: var(--elementColor);
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 10px;
}
footer {
display: flex;
flex-direction: column;
gap: 10px;
background-color: var(--secondary);
color: var(--text2Color);
padding-left: 30px;
padding-right: 30px;
padding-top: 30px;
a {
color: blue;
text-decoration: none;
}
}
nav {
display: flex;
gap: 5px;
a {
display: flex;
justify-content: center;
align-items: center;
color: var(--textColor);
text-decoration: none;
background-color: var(--element2Color);
padding: 10px;
border-radius: 10px;
transition: padding 100ms ease-out;
} a:hover {
padding: 0 30px;
}
}
@media screen and (max-width: 784px) {
header {
flex-direction: column;
gap: 10px;
padding: 15px;
}
}
</style>
</html>