diff --git a/ShoppingAssistantWebClient.Web/Pages/Index.razor b/ShoppingAssistantWebClient.Web/Pages/Index.razor
index b1a9fbd..e95f25b 100644
--- a/ShoppingAssistantWebClient.Web/Pages/Index.razor
+++ b/ShoppingAssistantWebClient.Web/Pages/Index.razor
@@ -1,6 +1,6 @@
@page "/"
-Index
+CartaId
-
diff --git a/ShoppingAssistantWebClient.Web/Shared/MainLayout.razor.css b/ShoppingAssistantWebClient.Web/Shared/MainLayout.razor.css
index 699f17c..950f666 100644
--- a/ShoppingAssistantWebClient.Web/Shared/MainLayout.razor.css
+++ b/ShoppingAssistantWebClient.Web/Shared/MainLayout.razor.css
@@ -1,15 +1,18 @@
+
.page {
+ width: 100%;
+ height: 100vh;
+ border: 1.5% solid;
+ border-color: #edf106;
+ padding: 1.25em;
+}
+.sidebar-menu {
position: relative;
- display: flex;
- flex-direction: column;
-}
-
-main {
- flex: 1;
-}
-
-.sidebar {
- background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
+ width: 20em;
+ height: 100%;
+ transition: 1s;
+ border: 1.5% solid;
+ border-color: #f10606;
}
.top-row {
diff --git a/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor b/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor
index ed97728..73aba98 100644
--- a/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor
+++ b/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor
@@ -1,4 +1,4 @@
-
+
+
+
+
+
+
+
+
+

+
CARTAID
+
+
+
+
+
+
+
+
@code {
- private bool collapseNavMenu = true;
+ private List
wishlist {get; set;}
+ protected async override Task OnInitializedAsync(){
- private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null;
-
- private void ToggleNavMenu()
- {
- collapseNavMenu = !collapseNavMenu;
+ wishlist = new List()
+ {
+ new Models.Wishlist {Id = "0", Name = "Gift for Jessica", Type="product", CreateById="0"},
+ new Models.Wishlist {Id = "1", Name = "Secret Santa", Type="gift", CreateById="1"},
+ new Models.Wishlist {Id = "2", Name = "Mark’s Birthday", Type="product", CreateById="2"},
+ new Models.Wishlist {Id = "3", Name = "Garden tools", Type="product", CreateById="2"},
+ new Models.Wishlist {Id = "4", Name = "Phone charger ", Type="product", CreateById="2"},
+ new Models.Wishlist {Id = "5", Name = "Garden tools", Type="product", CreateById="2"},
+ };
}
}
diff --git a/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor.css b/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor.css
index 77a8500..22f957b 100644
--- a/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor.css
+++ b/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor.css
@@ -1,4 +1,4 @@
-.navbar-toggler {
+/*.navbar-toggler {
background-color: rgba(255, 255, 255, 0.1);
}
@@ -56,13 +56,175 @@
}
.collapse {
- /* Never collapse the sidebar for wide screens */
display: block;
}
.nav-scrollable {
- /* Allow sidebar to scroll for tall menus */
+
height: calc(100vh - 3.5rem);
overflow-y: auto;
}
+}*/
+.left_frame {
+ position: relative;
+ height: 100%;
+ width: 100%;
+ transition: 1s;
}
+.logo {
+ height: 5em;
+ position: relative;
+ display: flex;
+ align-items: center;
+ padding-bottom: 1.5%;
+}
+.menu {
+ position: absolute;
+ width: 100%;
+ top: 5em;
+ bottom: 0;
+ border: 1.5px solid;
+ border-color: #0052CC;
+ border-radius: 0.6em;
+ padding-top: 1.5%;
+}
+.elements_wishlisht {
+
+ position: absolute;
+ overflow-y: auto;
+ top: 2.43em;
+ width: 100%;
+ bottom: 4em;
+ padding-left: 1.25em;
+ padding-right: 1.25em;
+}
+.info_user {
+ position: absolute;
+ display: flex;
+ align-items: center;
+ border-radius: 0 0 0.6em 0.6em;
+ background-color: rgb(255, 255, 255);
+ height: 4em;
+ left: 0;
+ bottom: 0;
+ width: 100%;
+ padding-left: 1.25em;
+ padding-right: 1.25em;
+ border-top: 1px solid #0165FF;
+}
+.logo_name {
+ padding-top: 0.5em;
+ padding-left: 0.3em;
+ font-size: 1em;
+ justify-content: center;
+ align-items: center;
+ letter-spacing: 0.5px;
+ font-weight: 600;
+ overflow: hidden;
+}
+.logo img {
+ float: left;
+}
+.wishlist_name {
+ padding-left: 0.7em;
+ width: 10.5em;
+ white-space: nowrap;
+ overflow: hidden;
+ position: absolute;
+ height: 2em;
+ line-height: 2em;
+}
+.cont_wishlist {
+ margin-top: 0.4375em;
+ margin-bottom: 0.4375em;
+ color: black;
+ border-radius: 0.6em;
+ font-size: 1.1em;
+ width: 100%;
+ height: 2em;
+ cursor: pointer;
+}
+.cont_wishlist:hover {
+ background-color: #e6e6e6;
+ transition: 0.2s;
+}
+.cont_wishlist:hover .button_delete_chat{
+ visibility: visible;
+}
+.cont_wishlist:hover .button_open_card{
+ visibility: visible;
+}
+.button_delete_chat {
+ margin-top: 0.4em;
+ margin-right: 1em;
+ float: right;
+ position: relative;
+ visibility: hidden;
+ height: 1.2em;
+ width: 1.2em;
+}
+.button_open_card {
+ margin-top: 0.4em;
+ margin-right: 1em;
+ float: right;
+ visibility: hidden;
+ height: 1.2em;
+ width: 1.3em;
+}
+.elements_wishlisht::-webkit-scrollbar {
+ background-color: #009FFF;
+ border-radius: 20px;
+ width: 0.2em;
+}
+.add_chat {
+ margin-bottom: 0.3125em;
+ background-color: #0165FF;
+ border-radius: 0.6em;
+ font-size: 1.2em;
+ width: 100%;
+ height: 2em;
+ cursor: pointer;
+ line-height: 2em;
+}
+.add_chat a {
+ border-radius: 0.6em;
+ padding-left: 0.7em;
+ text-decoration: none;
+ color: #FFFFFF;
+}
+.user_name {
+ padding-left: 0.4375em;
+ font-size: 1em;
+ justify-content: center;
+ align-items: center;
+}
+.info_user img {
+ float: left;
+ border-radius: 50%;
+ width: 2.3em;
+ height: 2.3em;
+}
+.button_close_menu {
+ position: relative;
+ width: 1.43em;
+ height: 1.23em;
+ float: right;
+ cursor: pointer;
+ margin-top: 0.5em;
+ margin-right: 1.30em;
+}
+.button_close_menu span {
+ width: 20px;
+ height: 1.5px;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ background-color: #4E4E4E;
+}
+.button_close_menu span:nth-of-type(2) {
+ top: calc(50% - 5px);
+}
+.button_close_menu span:nth-of-type(3) {
+ top: calc(50% + 5px);
+}
\ No newline at end of file
diff --git a/ShoppingAssistantWebClient.Web/wwwroot/css/site.css b/ShoppingAssistantWebClient.Web/wwwroot/css/site.css
index ed2dca8..6532e33 100644
--- a/ShoppingAssistantWebClient.Web/wwwroot/css/site.css
+++ b/ShoppingAssistantWebClient.Web/wwwroot/css/site.css
@@ -1,7 +1,7 @@
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
-html, body {
- font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
+html {
+ font-family: 'Nunito';
}
h1:focus {
@@ -22,10 +22,6 @@ a, .btn-link {
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
-.content {
- padding-top: 1.1rem;
-}
-
.valid.modified:not([type=checkbox]) {
outline: 1px solid #26b050;
}
diff --git a/ShoppingAssistantWebClient.Web/wwwroot/favicon.ico b/ShoppingAssistantWebClient.Web/wwwroot/favicon.ico
new file mode 100644
index 0000000..cbab12f
Binary files /dev/null and b/ShoppingAssistantWebClient.Web/wwwroot/favicon.ico differ
diff --git a/ShoppingAssistantWebClient.Web/wwwroot/favicon.png b/ShoppingAssistantWebClient.Web/wwwroot/favicon.png
deleted file mode 100644
index 8422b59..0000000
Binary files a/ShoppingAssistantWebClient.Web/wwwroot/favicon.png and /dev/null differ
diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/icon_delete.png b/ShoppingAssistantWebClient.Web/wwwroot/images/icon_delete.png
new file mode 100644
index 0000000..efab11c
Binary files /dev/null and b/ShoppingAssistantWebClient.Web/wwwroot/images/icon_delete.png differ
diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/icon_open_card.png b/ShoppingAssistantWebClient.Web/wwwroot/images/icon_open_card.png
new file mode 100644
index 0000000..4ce70e2
Binary files /dev/null and b/ShoppingAssistantWebClient.Web/wwwroot/images/icon_open_card.png differ