-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
152 lines (129 loc) · 2.78 KB
/
index.html
File metadata and controls
152 lines (129 loc) · 2.78 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Osiris RTOS</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
min-height: 100vh;
color: white;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 20px;
}
.header {
text-align: center;
margin-bottom: 2rem;
}
.header h1 {
font-size: 3rem;
margin-bottom: 2rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.header p {
font-size: 1.2rem;
opacity: 0.9;
}
.logo-container {
margin: 2rem 0;
max-width: 500px;
width: 100%;
}
.logo {
width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.nav-links {
display: flex;
gap: 2rem;
margin-top: 2rem;
flex-wrap: wrap;
justify-content: center;
}
.nav-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 12px 24px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50px;
text-decoration: none;
color: white;
font-weight: 500;
transition: all 0.3s ease;
}
.nav-link:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.icon {
font-size: 20px;
display: inline-block;
}
footer {
margin-top: 5rem;
text-align: center;
opacity: 0.7;
font-size: 0.9rem;
}
@media (max-width: 768px) {
.header h1 {
font-size: 2rem;
}
.header p {
font-size: 1rem;
}
.nav-links {
flex-direction: column;
align-items: center;
}
.nav-link {
width: 200px;
justify-content: center;
}
}
</style>
</head>
<body>
<div class="container">
<header class="header">
<h1>Osiris RTOS</h1>
<p>A real-time Operating System designed and verified to enable reliable software updates and operation for embedded sytems.</p>
</header>
<div class="logo-container">
<img src="img/osiris.png" alt="OsirisRTOS Logo" class="logo">
</div>
<nav class="nav-links">
<a href="https://github.com/OsirisRTOS/osiris/" class="nav-link" target="_blank" rel="noopener">
<span class="icon">💻</span>
Source Code
</a>
<a href="https://osiris.rs/docs/kernel/index.html" class="nav-link" target="_blank" rel="noopener">
<span class="icon">📚</span>
Documentation
</a>
</nav>
<footer>
<p>© 2025 Osiris Authors</p>
</footer>
</div>
</body>
</html>