diff --git a/Polyclinic/PolyclinicWebAppSuretor/Models/SelectItems.cs b/Polyclinic/PolyclinicWebAppSuretor/Models/SelectItems.cs deleted file mode 100644 index 24729ba..0000000 --- a/Polyclinic/PolyclinicWebAppSuretor/Models/SelectItems.cs +++ /dev/null @@ -1,20 +0,0 @@ -namespace PolyclinicWebAppSuretor.Models -{ - public class SelectItems - { - public List Items - { - get; set; - } - string[] arr = ["1", "2", "3"]; - - public void AddItems() - { - foreach (var item in arr) - { - Items.Add(item); - } - } - - } -} diff --git a/Polyclinic/PolyclinicWebAppSuretor/Views/Home/CreateRecipe.cshtml b/Polyclinic/PolyclinicWebAppSuretor/Views/Home/CreateRecipe.cshtml index 6100d10..8beebaf 100644 --- a/Polyclinic/PolyclinicWebAppSuretor/Views/Home/CreateRecipe.cshtml +++ b/Polyclinic/PolyclinicWebAppSuretor/Views/Home/CreateRecipe.cshtml @@ -3,44 +3,114 @@ @{ ViewData["Title"] = "CreateRecipe"; } - -
+

Создание рецепта

-
+ -
-
Количество процедур:
-
- +
+ +
+

+ Количество процедур: +

+
-
-
-
Комментарий:
-
- +
+

+ Комментарий: +

+ +
-
-
-
Процедуры:
-
+
-
-
-
- -
+
+ + + + + + + + @{ + int cRows = 20; + for (int i = 1; i <= cRows; i++) + { + + + + + } + } + +
+ Выбранное из процедур: +
Процедура № @i + + + + + +
+
+ + + + @*
+
Количество процедур:
+
+ +
+
+ +
+
Комментарий:
+
+ +
+
+ +
+
Процедуры:
+
+ + + +
+
+ +
+
+
+ +
+
*@ \ No newline at end of file diff --git a/Polyclinic/PolyclinicWebAppSuretor/Views/Home/Procedures.cshtml b/Polyclinic/PolyclinicWebAppSuretor/Views/Home/Procedures.cshtml index 45f3f18..155dc37 100644 --- a/Polyclinic/PolyclinicWebAppSuretor/Views/Home/Procedures.cshtml +++ b/Polyclinic/PolyclinicWebAppSuretor/Views/Home/Procedures.cshtml @@ -14,53 +14,53 @@ //

Авторизируйтесь

// return; // } -

- Создать процедуру -

- - - - - - - - - - - - - - - + + +
- Номер - - Название процедуры - - Комментарий - - Редактировать - - Удалить -
- 1 - - Массаж пяточек - - ммммммм - - - - +

+ Создать процедуру +

+ + + + + + + + + + + + + + + - - -
+ Номер + + Название процедуры + + Комментарий + + Редактировать + + Удалить +
+ 1 + + Массаж пяточек + + ммммммм + + + + - - - - - - -
+
+ + + + + +
}
\ No newline at end of file diff --git a/Polyclinic/PolyclinicWebAppSuretor/wwwroot/css/site.css b/Polyclinic/PolyclinicWebAppSuretor/wwwroot/css/site.css index ddda8e1..ee74d0b 100644 --- a/Polyclinic/PolyclinicWebAppSuretor/wwwroot/css/site.css +++ b/Polyclinic/PolyclinicWebAppSuretor/wwwroot/css/site.css @@ -24,9 +24,37 @@ body { .bi-edit-pen { color: rgb(72, 108, 16); height: 25px; + transition: transform 0.3s; +} + +.bi-edit-pen:hover{ + transform: scale(1.5); } .bi-cart-delete { - color: red ; + color: red; height: 25px; + transition: transform 0.3s; +} + +.form-create-recipe{ + color: white; + background-color: rgb(66, 132, 112) +}S + +.create-recipe{ + background-color: rgb(145, 195, 128) +} + +.bi-cart-delete:hover { + transform: scale(1.5); +} + +.svg-icon { + transition: transform 0.3s; +} + +.table-recipe-create{ + font-size: 2.5vh; + color: white; } \ No newline at end of file