Initial commit: OOODMDK website with updated cities page design

This commit is contained in:
albivkt
2025-06-29 03:18:28 +03:00
commit 5a37ded261
70 changed files with 41347 additions and 0 deletions

51
public/styles/global.css Normal file
View File

@ -0,0 +1,51 @@
@font-face {
font-family: "Gilroy";
src: url("/fonts/Gilroy-Bold.ttf") format("truetype");
font-weight: bold;
font-display: swap;
}
@font-face {
font-family: "Gilroy";
src: url("/fonts/Gilroy-Medium.ttf") format("truetype");
font-weight: 500;
font-display: swap;
}
@font-face {
font-family: "Nevduplenysh";
src: url("/fonts/Nevduplenysh.otf") format("opentype");
font-weight: normal;
font-style: normal;
font-display: swap;
}
/* Базовые стили */
html {
scroll-behavior: smooth;
}
body {
background-color: #f7f7f7;
color: #2c2c2c;
}
/* Кастомные стили */
.social-icon {
transition:
transform 0.3s ease,
color 0.3s ease;
}
.social-icon:hover {
transform: scale(1.1);
color: #facc15;
}
.social-icon img {
transition: filter 0.3s ease;
}
.social-icon:hover img {
filter: brightness(1.2) saturate(1.2);
}