-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhackeros-team.html
More file actions
160 lines (160 loc) · 4.8 KB
/
hackeros-team.html
File metadata and controls
160 lines (160 loc) · 4.8 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
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HackerOS - Team</title>
<link rel="icon" type="image/png" href="HackerOS.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
background-color: #1C2526;
color: #FFFFFF;
line-height: 1.6;
}
header {
background-color: #121212;
padding: 20px 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
transition: background-color 0.3s ease;
}
header:hover {
background-color: #1A1A1A;
}
nav {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
nav .logo img {
height: 40px;
width: auto;
}
nav ul {
list-style: none;
display: flex;
gap: 25px;
}
nav ul li a {
color: #FFFFFF;
text-decoration: none;
font-size: 18px;
transition: color 0.3s, transform 0.3s;
position: relative;
}
nav ul li a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background-color: #B0B0B0;
transition: width 0.3s;
}
nav ul li a:hover::after {
width: 100%;
}
nav ul li a:hover {
color: #B0B0B0;
transform: translateY(-2px);
}
.team-section {
max-width: 1200px;
margin: 120px auto 50px;
padding: 20px;
text-align: center;
}
.team-section h1 {
font-size: 36px;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.team-member {
margin: 20px 0;
padding: 20px;
background-color: #2F3A44;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
transition: transform 0.3s, box-shadow 0.3s;
}
.team-member:hover {
transform: translateY(-5px);
box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}
.team-member img {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 10px;
}
.team-member h2 {
font-size: 24px;
margin-bottom: 10px;
}
.team-member p {
color: #B0B0B0;
}
footer {
background-color: #121212;
padding: 20px;
text-align: center;
color: #B0B0B0;
position: relative;
bottom: 0;
width: 100%;
box-shadow: 0 -2px 5px rgba(0,0,0,0.5);
}
</style>
<script>
document.addEventListener('DOMContentLoaded', () => {
const userLang = navigator.language || navigator.userLanguage;
if (userLang.startsWith('pl')) {
document.documentElement.lang = 'pl';
} else {
document.documentElement.lang = 'en';
document.querySelector('.team-section h1').textContent = 'HackerOS Team';
document.querySelectorAll('.team-member h2')[0].textContent = 'michal92299';
document.querySelectorAll('.team-member p')[0].textContent = 'Founder of HackerOS';
document.querySelector('footer p').textContent = '© 2025 HackerOS. All rights reserved.';
}
});
</script>
</head>
<body>
<header>
<nav>
<div class="logo"><img src="HackerOS.png" alt="HackerOS Logo"></div>
<ul>
<li><a href="Home-page.html">Home</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="releases.html">Releases</a></li>
<li><a href="hackeros-team.html">HackerOS Team</a></li>
<li><a href="hackeros-documentation.html">Documentation</a></li>
</ul>
</nav>
</header>
<section class="team-section">
<h1>Zespół HackerOS</h1>
<div class="team-member">
<img src="michal92299.png" alt="michal92299 Logo">
<h2>michal92299</h2>
<p>Założyciel HackerOS</p>
</div>
</section>
<footer>
<p>© 2026 HackerOS. Wszelkie prawa zastrzeżone.</p>
</footer>
</body>
</html>