екроекрое

This commit is contained in:
Polina 2024-06-01 10:16:05 +04:00
parent 5320299e2f
commit 4cab366c25
4 changed files with 175 additions and 27 deletions

View File

@ -1,6 +1,81 @@
@{
ViewData["Title"] = "Клиент-вход";
}
<style>
body {
background: linear-gradient(to bottom right, #a1c2a1, #558055);
color: #fff;
font-family: 'Arial', sans-serif;
}
.container {
max-width: 500px;
margin: 0 auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.title {
text-align: center;
font-size: 28px;
color: #333; /* Изменили цвет главной надписи */
margin-bottom: 30px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-size: 16px;
font-weight: bold;
color: #333;
margin-bottom: 5px;
}
.form-control {
width: 100%;
padding: 10px;
font-size: 16px;
border: none;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.8);
color: #333;
}
.btn {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
color: #050505;
background-color: #a1c2a1;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #558055;
}
.enter-link {
display: block;
font-size: 14px;
color: #050505;
text-decoration: none;
margin-top: 10px;
}
.enter-link:hover {
color: #ccc;
}
</style>
<div>
<h2 class="display-4">@ViewData["Title"]</h2>

View File

@ -51,7 +51,7 @@
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
color: #fff;
color: #050505;
background-color: #a1c2a1;
border: none;
border-radius: 4px;
@ -63,14 +63,11 @@
background-color: #558055;
}
.text-center {
text-align: center;
}
.enter-link {
display: block;
font-size: 14px;
color: #fff;
color: #050505;
text-decoration: none;
margin-top: 10px;
}

View File

@ -4,24 +4,25 @@
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
background: linear-gradient(to bottom right, #a1c2a1, #558055);
color: #fff;
font-family: 'Arial', sans-serif;
}
.container {
max-width: 500px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.title {
text-align: center;
font-size: 24px;
color: #333;
margin-bottom: 20px;
font-size: 28px;
color: #333; /* Изменили цвет главной надписи */
margin-bottom: 30px;
}
.form-group {
@ -30,51 +31,52 @@
.form-group label {
display: block;
font-size: 14px;
font-size: 16px;
font-weight: bold;
color: #555;
color: #333;
margin-bottom: 5px;
}
.form-control {
width: 100%;
padding: 8px;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border: none;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.8);
color: #333;
}
.btn {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
color: #fff;
background-color: #337ab7;
font-size: 18px;
font-weight: bold;
color: #050505;
background-color: #a1c2a1;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #23527c;
background-color: #558055;
}
.text-center {
text-align: center;
}
.register-link {
.enter-link {
display: block;
font-size: 14px;
color: #777;
color: #050505;
text-decoration: none;
margin-top: 10px;
}
.register-link:hover {
color: #333;
.enter-link:hover {
color: #ccc;
}
</style>
<div class="container">
<h2 class="title">@ViewData["Title"]</h2>

View File

@ -2,7 +2,81 @@
ViewData["Title"] = "Регистрация за сотрудника";
}
<style>
body {
background: linear-gradient(to bottom right, #a1c2a1, #558055);
color: #fff;
font-family: 'Arial', sans-serif;
}
.container {
max-width: 500px;
margin: 0 auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.title {
text-align: center;
font-size: 28px;
color: #333; /* Изменили цвет главной надписи */
margin-bottom: 30px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-size: 16px;
font-weight: bold;
color: #333;
margin-bottom: 5px;
}
.form-control {
width: 100%;
padding: 10px;
font-size: 16px;
border: none;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.8);
color: #333;
}
.btn {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
color: #050505;
background-color: #a1c2a1;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #558055;
}
.enter-link {
display: block;
font-size: 14px;
color: #050505;
text-decoration: none;
margin-top: 10px;
}
.enter-link:hover {
color: #ccc;
}
</style>
<div class="container">
<h2 class="title">@ViewData["Title"]</h2>