Skip to content

Commit b9fc789

Browse files
authored
Update hackeros-team.html
1 parent 8eac1af commit b9fc789

File tree

1 file changed

+52
-26
lines changed

1 file changed

+52
-26
lines changed

hackeros-team.html

Lines changed: 52 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -11,82 +11,94 @@
1111
box-sizing: border-box;
1212
font-family: 'Arial', sans-serif;
1313
}
14-
1514
body {
1615
background-color: #1C2526;
1716
color: #FFFFFF;
1817
line-height: 1.6;
1918
}
20-
2119
header {
2220
background-color: #121212;
2321
padding: 20px 0;
2422
position: fixed;
2523
width: 100%;
2624
top: 0;
2725
z-index: 1000;
28-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
26+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
27+
transition: background-color 0.3s ease;
28+
}
29+
header:hover {
30+
background-color: #1A1A1A;
2931
}
30-
3132
nav {
3233
max-width: 1200px;
3334
margin: 0 auto;
3435
display: flex;
3536
justify-content: space-between;
3637
align-items: center;
3738
}
38-
39-
nav .logo {
40-
font-size: 24px;
41-
font-weight: bold;
42-
color: #FFFFFF;
39+
nav .logo img {
40+
height: 40px;
41+
width: auto;
4342
}
44-
4543
nav ul {
4644
list-style: none;
4745
display: flex;
48-
gap: 20px;
46+
gap: 25px;
4947
}
50-
5148
nav ul li a {
5249
color: #FFFFFF;
5350
text-decoration: none;
5451
font-size: 18px;
55-
transition: color 0.3s;
52+
transition: color 0.3s, transform 0.3s;
53+
position: relative;
54+
}
55+
nav ul li a::after {
56+
content: '';
57+
position: absolute;
58+
width: 0;
59+
height: 2px;
60+
bottom: -5px;
61+
left: 0;
62+
background-color: #B0B0B0;
63+
transition: width 0.3s;
64+
}
65+
nav ul li a:hover::after {
66+
width: 100%;
5667
}
57-
5868
nav ul li a:hover {
5969
color: #B0B0B0;
70+
transform: translateY(-2px);
6071
}
61-
6272
.team-section {
6373
max-width: 1200px;
6474
margin: 120px auto 50px;
6575
padding: 20px;
6676
text-align: center;
6777
}
68-
6978
.team-section h1 {
7079
font-size: 36px;
7180
margin-bottom: 20px;
81+
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
7282
}
73-
7483
.team-member {
7584
margin: 20px 0;
7685
padding: 20px;
7786
background-color: #2F3A44;
7887
border-radius: 10px;
88+
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
89+
transition: transform 0.3s, box-shadow 0.3s;
90+
}
91+
.team-member:hover {
92+
transform: translateY(-5px);
93+
box-shadow: 0 6px 15px rgba(0,0,0,0.4);
7994
}
80-
8195
.team-member h2 {
8296
font-size: 24px;
8397
margin-bottom: 10px;
8498
}
85-
8699
.team-member p {
87100
color: #B0B0B0;
88101
}
89-
90102
footer {
91103
background-color: #121212;
92104
padding: 20px;
@@ -95,33 +107,47 @@
95107
position: relative;
96108
bottom: 0;
97109
width: 100%;
110+
box-shadow: 0 -2px 5px rgba(0,0,0,0.5);
98111
}
99112
</style>
113+
<script>
114+
document.addEventListener('DOMContentLoaded', () => {
115+
const userLang = navigator.language || navigator.userLanguage;
116+
if (userLang.startsWith('pl')) {
117+
document.documentElement.lang = 'pl';
118+
} else {
119+
document.documentElement.lang = 'en';
120+
document.querySelector('.team-section h1').textContent = 'HackerOS Team';
121+
document.querySelector('.team-member h2').textContent = 'michal92299';
122+
document.querySelector('.team-member p').textContent = 'Founder and Co-Creator of HackerOS';
123+
document.querySelector('footer p').textContent = '© 2025 HackerOS. All rights reserved.';
124+
}
125+
});
126+
</script>
100127
</head>
101128
<body>
102129
<header>
103130
<nav>
104-
<div class="logo">HackerOS</div>
131+
<div class="logo"><img src="HackerOS.png" alt="HackerOS Logo"></div>
105132
<ul>
106133
<li><a href="Home-page.html">Home</a></li>
107134
<li><a href="download.html">Download</a></li>
108135
<li><a href="releases.html">Releases</a></li>
109136
<li><a href="about-hackeros.html">About HackerOS</a></li>
110137
<li><a href="hackeros-team.html">HackerOS Team</a></li>
138+
<li><a href="write-to-us.html">Write to Us</a></li>
111139
</ul>
112140
</nav>
113141
</header>
114-
115142
<section class="team-section">
116-
<h1>HackerOS Team</h1>
143+
<h1>Zespół HackerOS</h1>
117144
<div class="team-member">
118145
<h2>michal92299</h2>
119-
<p>Founder and Co-Creator of HackerOS</p>
146+
<p>Założyciel i współtwórca HackerOS</p>
120147
</div>
121148
</section>
122-
123149
<footer>
124-
<p>&copy; 2025 HackerOS. All rights reserved.</p>
150+
<p>&copy; 2025 HackerOS. Wszelkie prawa zastrzeżone.</p>
125151
</footer>
126152
</body>
127153
</html>

0 commit comments

Comments
 (0)