-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
307 additions
and
202 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
288 changes: 144 additions & 144 deletions
288
docs/assets/index-CGXkOy18.js → docs/assets/index-m7s08lMF.js
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,79 @@ | ||
.footer { | ||
padding: 20px; | ||
display: flex; | ||
gap: 20px; | ||
justify-content: flex-end; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
|
||
> div > label { | ||
color: white; | ||
margin-right: 5px; | ||
} | ||
// padding: 20px; | ||
// display: flex; | ||
// gap: 20px; | ||
// justify-content: flex-end; | ||
// align-items: center; | ||
// flex-wrap: wrap; | ||
|
||
// > div > label { | ||
// color: white; | ||
// margin-right: 5px; | ||
// } | ||
|
||
// .google-play-badge { | ||
// background-image: url('./google-play-badge.png'); | ||
// // background-size: cover; | ||
// display: inline-flex; | ||
// // width: 100px; | ||
// // height: 60px; | ||
// border: none; | ||
// cursor: pointer; | ||
// .google-play-badge img { | ||
// width: 50px; | ||
// height: auto; | ||
// } | ||
// } | ||
.google-play-button { | ||
background-color: transparent; /* Цвет фона кнопки */ | ||
// background-color: wheat; /* Цвет фона кнопки */ | ||
border: none; /* Убираем границу */ | ||
display: inline-flex; /* Используем flex для выравнивания */ | ||
align-items: center; /* Выравнивание по вертикали */ | ||
// padding: 10px 20px; /* Отступы */ | ||
cursor: pointer; /* Курсор при наведении */ | ||
border-radius: 8px; /* Скругленные углы */ | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Тень */ | ||
transition: transform 0.2s, box-shadow 0.2s; /* Плавные переходы */ | ||
width: 180px; | ||
} | ||
|
||
.footer-checkbox-container { | ||
display: flex; | ||
flex-direction: column; | ||
button { | ||
padding: 0; | ||
} | ||
|
||
> span { | ||
color: white; | ||
font-weight: bold; | ||
margin-bottom: 4px; | ||
} | ||
.google-play-button img { | ||
width: 180px; /* Ширина изображения */ | ||
height: auto; /* Автоматическая высота для сохранения пропорций */ | ||
// margin-right: 10px; /* Отступ между изображением и текстом */ | ||
background-size: contain; | ||
} | ||
|
||
input { | ||
margin-left: 3px; | ||
} | ||
.google-play-button:hover { | ||
transform: scale(1.05); /* Увеличиваем кнопку при наведении */ | ||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Увеличиваем тень при наведении */ | ||
} | ||
|
||
.google-play-button:active { | ||
transform: scale(0.95); /* Уменьшаем кнопку при нажатии */ | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Возвращаем тень при нажатии */ | ||
} | ||
|
||
} | ||
|
||
// .footer-checkbox-container { | ||
// display: flex; | ||
// flex-direction: column; | ||
|
||
// > span { | ||
// color: white; | ||
// font-weight: bold; | ||
// margin-bottom: 4px; | ||
// } | ||
|
||
// input { | ||
// margin-left: 3px; | ||
// } | ||
// } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters