diff --git a/images/bg.jpg b/images/bg.jpg
deleted file mode 100644
index 48f17d3..0000000
Binary files a/images/bg.jpg and /dev/null differ
diff --git a/images/sticker.webp b/images/sticker.webp
new file mode 100644
index 0000000..3bef972
Binary files /dev/null and b/images/sticker.webp differ
diff --git a/index.html b/index.html
index 7c69ab7..6c95430 100644
--- a/index.html
+++ b/index.html
@@ -22,12 +22,14 @@
Добро пожаловать на страницу semkapc
+
+
+
diff --git a/script.js b/script.js
index a3cfbb4..65bc66a 100644
--- a/script.js
+++ b/script.js
@@ -95,7 +95,6 @@ function digitalClock() {
document.addEventListener('DOMContentLoaded', (event) => {
digitalClock();
- // Загрузка счетчика посещений
try {
const script = document.createElement('script');
script.src = "//counter.websiteout.com/js/3/8/0/1";
@@ -132,3 +131,42 @@ if (!sessionStorage.getItem('animated')){
} else {
terminal.remove();
}
+
+var arr = [
+ 'https://my-wallpapers.github.io/my-wallpapers/Corner_of_my_desk.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Dark_forest.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Dark_park.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Ducks_in_the_sea.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Flower.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Flowers.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Grass.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Hill.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Insects.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Keys.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Leaf.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Leaves_in_the_rock.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Mountain.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Plank.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Sky.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Stairs.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Stones.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Stop.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Sun.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Sunset.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/Trees.jpg',
+ 'https://my-wallpapers.github.io/my-wallpapers/lamp_dark.png'
+ ];
+
+ function rand(min, max) {
+ return Math.floor(Math.random() * (max - min) + min);
+ }
+
+ var savedWallpaper = sessionStorage.getItem('backgroundWallpaper');
+
+ if (savedWallpaper) {
+ document.body.style.backgroundImage = 'url(' + savedWallpaper + ')';
+ } else {
+ var selectedWallpaper = arr[rand(0, arr.length)];
+ document.body.style.backgroundImage = 'url(' + selectedWallpaper + ')';
+ sessionStorage.setItem('backgroundWallpaper', selectedWallpaper);
+ }
\ No newline at end of file
diff --git a/soft.html b/soft.html
index d698eeb..0695c59 100644
--- a/soft.html
+++ b/soft.html
@@ -57,6 +57,24 @@
Supermium 126.0.6478.261 R7
Скачать 32 Bit
Скачать 64 Bit
+ Github Desktop
+ Скачать
+ 7-Zip 24.09
+ Скачать 32 Bit
+ Скачать 64 Bit
+ Скачать ARM 64
+ Rufus
+ Скачать 32 Bit
+ Скачать 64 Bit
+ Скачать ARM 64
+ balenaEtcher 2.1.0
+ Скачать
+ BaWaMI
+ Скачать
+ qBittorrent 5.0.4
+ Скачать
+ AnyDesk 9.0.4
+ Скачать
@@ -76,6 +94,12 @@
Скачать
Docker Desktop
Скачать
+ Github Desktop
+ Скачать
+ balenaEtcher 2.1.0
+ Скачать
+ AnyDesk 6.4.2
+ Скачать
diff --git a/soft/qbittorrent_5.0.4_x64_setup.exe b/soft/qbittorrent_5.0.4_x64_setup.exe
new file mode 100644
index 0000000..9b7c396
Binary files /dev/null and b/soft/qbittorrent_5.0.4_x64_setup.exe differ
diff --git a/styles.css b/styles.css
index a3892be..0479f7c 100644
--- a/styles.css
+++ b/styles.css
@@ -8,21 +8,24 @@ body {
background-size: cover;
background-position: center center;
background-attachment: fixed;
+ background-color: black;
color: #fff;
text-align: center;
height: 100vh;
}
header {
- background-color: rgba(0, 0, 0, 0.7);
- padding: 10px;
+ background-color: rgba(0, 0, 0, 0.4);
+ backdrop-filter: blur(10px);
+ padding: 7px;
}
main {
max-width: 800px;
margin: 0 auto;
padding: 20px;
- background-color: rgba(0, 0, 0, 0.5);
+ background-color: rgba(0, 0, 0, 0.4);
+ backdrop-filter: blur(10px);
border-radius: 20px;
}
@@ -39,7 +42,15 @@ nav img {
}
nav img:hover {
- transform: scale(1.1);
+ transform: scale(1.3);
+}
+
+footer img {
+ transition: transform 0.3s ease;
+}
+
+footer img:hover {
+ transform: scale(1.2);
}
#contacts ul {