-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
131 lines (126 loc) · 3.92 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Customa</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/png" href="misc/logo/Logo.png" />
<!-- Internal Stylesheets -->
<link
class="theme"
rel="stylesheet"
type="text/css"
href="css/themedark.css"
/>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<link rel="stylesheet" type="text/css" href="css/nav.css" />
<link rel="stylesheet" type="text/css" href="css/logo.css" />
<link rel="stylesheet" type="text/css" href="css/toggle.css" />
<!-- External Stylesheets -->
<link rel="stylesheet" href="css/sb-custom.css" />
<!-- External Scripts -->
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/simplebar@3.1.3/dist/simplebar.js"
></script>
<script type="text/javascript" src="external/anime/anime.min.js"></script>
<!-- Internal Scripts -->
<script type="text/javascript" defer src="js/index.js"></script>
</head>
<body data-simplebar>
<main>
<header id="header">
<div class="settings">
<div class="settingsContent">
<p>Dark Mode</p>
<input
class="tgl tgl-skewed"
id="cbDarkMode"
type="checkbox"
checked
/>
<label
class="tgl-btn"
data-tg-off="OFF"
data-tg-on="ON"
for="cbDarkMode"
></label>
</div>
<div class="settingsHandle"></div>
</div>
<div class="loading">
<div class="loadingLogo">
<div class="logoOuter">
<div class="logoOuterCircle">
<div class="logoInnerCutout"></div>
</div>
<div class="logoInner">
<div class="logoInnerCircle">
<div class="logoInnerMouth"></div>
</div>
</div>
</div>
</div>
</div>
<div class="loadingText">
<h1>The Customa Project</h1>
<h2>Custom Themes for all your favorite platforms</h2>
</div>
<span class="scrollInfo">Scroll for more Info!</span>
</header>
<nav>
<div class="homeBar" style="transform: translateX(-100px)">
<a href="#header" style="width: 100px">Home</a>
</div>
<div class="linkBox">
<a href="#discord-theme" class="discord-theme" transform="5"
>Discord Theme</a
>
<a href="#firefox-theme" class="firefox-theme" transform="17"
>Firefox Theme</a
>
<a href="#github" class="github" transform="29">Github</a>
</div>
<a
class="currentSection"
visibleElement="main"
style="transform: translateY(30%);"
>
<h1 class="main"><img src="misc/logo/Logo.png" alt="" />Customa</h1>
<h1 class="secondary">Discord</h1>
<h1 class="tertiary">Firefox</h1>
</a>
<div class="linkBox">
<a href="#dev-tools" class="dev-tools" transform="63.5"
>Development Tools</a
>
<a href="#current-projects" class="current-projects" transform="77"
>Current Projects</a
>
<a href="#idea" class="idea" transform="88">Idea</a>
</div>
</nav>
<section id="discord-theme">
<content>
<h1>Discord Theme</h1>
</content>
</section>
<section id="firefox-theme">
Hallo
</section>
<section id="github">
Hallo
</section>
<section id="dev-tools">
Hallo
</section>
<section id="current-projects">
Hallo
</section>
<section id="idea">
Hallo
</section>
</main>
</body>
</html>