forked from maelgruand1/AltOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (100 loc) · 2.98 KB
/
index.html
File metadata and controls
114 lines (100 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AltOS | An alternative to Operating System</title>
<style>
body {
font-family: Arial, sans-serif;
background: linear-gradient(to right, grey, #000000);
color: white;
margin: 0;
padding: 20px;
text-align: center;
scrollbar-color: white;
}
header {
background-color: #2c3e50;
color: white;
padding: 20px;
border-radius: 5px;
margin-bottom: 30px;
width: 100%;
box-sizing: border-box;
}
h1 {
font-size: 2.2rem;
margin: 0;
line-height: 1.2;
}
.description {
background-color: #34495e; /* Darker background for the box */
border-radius: 10px; /* Rounded corners */
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
max-width: 650px;
margin: 0 auto;
}
.description p {
font-size: 1.1rem;
line-height: 1.8;
margin: 0;
}
br {
margin-bottom: 3rem;
}
/* Adjustments for responsive design */
@media (max-width: 768px) {
body {
padding: 10px;
}
header {
padding: 15px;
}
h1 {
font-size: 1.8rem;
}
.description p {
font-size: 1rem;
}
}
/* CSS for the button */
button {
background-color: #2c3e50;
color: white;
border: none;
padding: 12px 24px;
font-size: 1.1rem;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
}
button:hover {
background-color: #1abc9c; /* Color when hovering */
transform: translateY(-3px); /* Slight lift effect */
}
button:active {
background-color: #16a085; /* Darker color when clicked */
transform: translateY(1px); /* Slight press effect */
}
</style>
</head>
<body>
<header>
<h1>AltOS | Traditional Operating System alternative</h1>
</header>
<br><br><br>
<section class="description">
<p>
AltOS is a cloud-based operating system accessible through a web browser.
<br>
It offers a desktop-like interface with file management, apps, and offline support.
<br>
Key features include a file explorer, Markdown editor, terminal, media player, and dark/light mode themes.
</p>
</section>
<br><br><br>
<a href="AltOS.html"><button>Go to AltOS</button></a>
</body>
</html>