-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (111 loc) · 4.88 KB
/
index.html
File metadata and controls
119 lines (111 loc) · 4.88 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
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CrystalOS Alpha</title>
<link rel="stylesheet" href="index.css">
<script src="index.js"></script>
<style>
.sandwitchMenuItems {
display: none;
position: absolute;
top: 50px; /* Adjust this value based on your header height */
left: 0;
width: 100%;
background-color: white; /* Adjust the background color as needed */
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Optional: Add shadow for better visibility */
display: none;
justify-content: space-around; /* Distribute items evenly */
padding: 10px 0; /* Add padding to the top and bottom */
}
.sandwitchMenuItems a {
padding: 7px 7px; /* Add padding to the left and right */
text-align: center;
text-decoration: none;
color: black; /* Adjust the text color as needed */
}
.sandwitchMenu {
cursor: pointer;
}
</style>
</head>
<body>
<header>
<img src="resources/icon.png" alt="CrystalOS Logo" width="25px" height="25px">
<h1>Crystal Development</h1>
<nav>
<a href="#">Home</a>
<a href="#">Features</a>
<a href="#">Download</a>
<a href="#">Contact</a>
</nav>
<div id="sandwitchMenu" class="sandwitchMenu" onclick="toggleMenu()">
<hr>
<hr>
<hr>
</div>
<nav id="sandwitchMenuItems" class="sandwitchMenuItems">
<a href="#">Home</a>
<a href="#">Features</a>
<a href="#">Download</a>
<a href="#">Contact</a>
</nav>
</header>
<div class="content">
<div class="Detail">
<div>
<h2>CrystalOS Alpha</h2>
<img class="HideUnlessMobile" src="resources/image.png" alt="CrystalOS Preview">
<p class="Description">An operating system where design and productivity meets, leading to a much better user experience <a href="COSA.html">Learn more</a></p>
</div>
<img class="RightImage" src="resources/image.png" alt="CrystalOS Preview">
</div>
<div class="Detail">
<img class="LeftImage" src="resources/CosmosLogo.png" alt="CrystalOS Preview">
<div>
<h2>COSMOS</h2>
<img class="HideUnlessMobile" src="resources/CosmosLogo.png" alt="CrystalOS Preview">
<p class="Description">Bring your ideas alive with COSMOS! Your dream operating system can become a reality. (C# knowledge is essential) <a href="COSMOS.html">Learn more</a></p>
</div>
</div>
<div class="Detail">
<div>
<h2>Archived projects</h2>
<img class="HideUnlessMobile" src="resources/Archived.png" alt="CrystalOS Preview" style="max-width: 300px;">
<p class="Description">If you want to get started, you may want to try out other people projects <a href="Archived.html">Learn more</a></p>
</div>
<img class="RightImage" src="resources/Archived.png" alt="CrystalOS Preview" style="max-width: 300px;">
</div>
<div class="Detail">
<img class="LeftImage" src="resources/ProductivityMaxPro.png" alt="CrystalOS Preview">
<div>
<h2>Other projects</h2>
<img class="HideUnlessMobile" src="resources/ProductivityMaxPro.png" alt="CrystalOS Preview">
<p class="Description">Not interested in CrystalOS? No problem! There are plenty of other projects to choose from! <a href="Archived.html">Learn more</a></p>
</div>
</div>
<div class="Detail">
<div class="ExcludeVideoCard">
<h2>Latest video</h2>
<iframe src="https://www.youtube.com/embed/y9sD7MEi1pg" title="CrystalOS Alpha Does YouTube Now! 📺And Oh Boy, Is It Struggling...😅 || DOLBY Test Video On COSMOS C#" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
<footer>
<div>
<div>
<ul>
<li><a href="emailto:crystalosdev@gmail.com">E-mail</a></li>
<li><a href="YoutubeHere">Youtube</a></li>
<li><a href="DiscordHere">Discord</a></li>
</ul>
</div>
<div>
<p>"Never trust what you see on the internet" - Abraham Lincoln</p>
</div>
</div>
<p>© 2021-2024 Crystal Development.</p>
</footer>
</body>
</html>