Skip to content

Commit 8eac1af

Browse files
authored
Update about-hackeros.html
1 parent 91e27d5 commit 8eac1af

File tree

1 file changed

+49
-23
lines changed

1 file changed

+49
-23
lines changed

about-hackeros.html

Lines changed: 49 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -11,72 +11,83 @@
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
.about-section {
6373
max-width: 1200px;
6474
margin: 120px auto 50px;
6575
padding: 20px;
6676
text-align: center;
77+
background-color: #2F3A44;
78+
border-radius: 10px;
79+
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
6780
}
68-
6981
.about-section h1 {
7082
font-size: 36px;
7183
margin-bottom: 20px;
84+
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
7285
}
73-
7486
.about-section p {
7587
font-size: 18px;
7688
color: #B0B0B0;
7789
margin-bottom: 20px;
7890
}
79-
8091
footer {
8192
background-color: #121212;
8293
padding: 20px;
@@ -85,31 +96,46 @@
8596
position: relative;
8697
bottom: 0;
8798
width: 100%;
99+
box-shadow: 0 -2px 5px rgba(0,0,0,0.5);
88100
}
89101
</style>
102+
<script>
103+
document.addEventListener('DOMContentLoaded', () => {
104+
const userLang = navigator.language || navigator.userLanguage;
105+
if (userLang.startsWith('pl')) {
106+
document.documentElement.lang = 'pl';
107+
} else {
108+
document.documentElement.lang = 'en';
109+
document.querySelector('.about-section h1').textContent = 'About HackerOS';
110+
const ps = document.querySelectorAll('.about-section p');
111+
ps[0].textContent = 'HackerOS is based on Debian Testing distribution, uses xanmod lts kernel and is intended for regular users, gamers and cybersecurity enthusiasts.';
112+
ps[1].textContent = 'Our mission is to create an efficient and user-friendly environment for exploring the world of technology, security and games.';
113+
document.querySelector('footer p').textContent = '© 2025 HackerOS. All rights reserved.';
114+
}
115+
});
116+
</script>
90117
</head>
91118
<body>
92119
<header>
93120
<nav>
94-
<div class="logo">HackerOS</div>
121+
<div class="logo"><img src="HackerOS.png" alt="HackerOS Logo"></div>
95122
<ul>
96123
<li><a href="Home-page.html">Home</a></li>
97124
<li><a href="download.html">Download</a></li>
98125
<li><a href="releases.html">Releases</a></li>
99126
<li><a href="about-hackeros.html">About HackerOS</a></li>
100127
<li><a href="hackeros-team.html">HackerOS Team</a></li>
128+
<li><a href="write-to-us.html">Write to Us</a></li>
101129
</ul>
102130
</nav>
103131
</header>
104-
105132
<section class="about-section">
106-
<h1>About HackerOS</h1>
133+
<h1>O HackerOS</h1>
107134
<p>HackerOS bazuje na dystrybucji Debian Testing, wykorzystuje jądro xanmod lts i jest przeznaczony dla zwykłych użytkowników, graczy i entuzjastów cyberbezpieczeństwa.</p>
108135
<p>Naszą misją jest stworzenie wydajnego i przyjaznego użytkownikowi środowiska do eksploracji świata technologii, bezpieczeństwa i gier.</p>
109136
</section>
110-
111137
<footer>
112-
<p>&copy; 2025 HackerOS. All rights reserved.</p>
138+
<p>&copy; 2025 HackerOS. Wszelkie prawa zastrzeżone.</p>
113139
</footer>
114140
</body>
115141
</html>

0 commit comments

Comments
 (0)