добавила кнопку перехода на на авторизацию, но она не работает...

This commit is contained in:
Елена Бакальская 2024-05-01 16:44:48 +04:00
parent 9972987b32
commit eb67d961d9
2 changed files with 29 additions and 6 deletions

View File

@ -3,7 +3,13 @@
}
<div class="text-center d-flex flex-column">
<h1 class="display-4 mb-5">Привет, недобро пожаловать >:\</h1>
<div class="d-flex flex-row">
<h1 class="display-4 mb-5 me-3">Привет, недобро пожаловать >:\</h1>
<a asp-action="Login" class="button-entrance btn">
Ну заходи что-ли...
</a>
@* <input type="submit" value="Ну заходи что-ли..." class="button-entrance btn" asp-action="Login" /> *@
</div>
<div class="text-center d-flex flex-column justify-content-center align-items-center mt-5" style="position: fixed; top: 0; right: 0; bottom: 0; left: 0;">
<img src=".\\svg\лого ё.png" style="max-width: 100%; max-height: 100%;" />

View File

@ -144,6 +144,12 @@ body {
height: 40vh;
}
.button-save-list-courses:hover {
color: white;
background-color: rgb(60, 53, 7);
transform: scale(1.2);
}
.button-save-list-courses {
width: 20vh;
height: 8vh;
@ -153,8 +159,19 @@ body {
box-shadow: 0px 4px 8px rgb(60, 53, 7); /* Горизонтальное смещение, вертикальное смещение, размытие, цвет тени */
}
.button-save-list-courses:hover {
color: white;
background-color: rgb(60, 53, 7);
transform: scale(1.2);
}
.button-entrance:hover {
color: white;
background-color: rgb(218, 80, 80);
transform: scale(1.1);
}
.button-entrance {
color: white;
width: 20vh;
height: 8vh;
background-color: rgb(218, 80, 80);
box-shadow: 4px 4px 8px rgb(218, 80, 80);
transition: transform 0.3s;
}