diff --git a/src/app/Utility/stringhandler.ts b/src/app/Utility/stringhandler.ts index a7af86e..8e1fe0e 100644 --- a/src/app/Utility/stringhandler.ts +++ b/src/app/Utility/stringhandler.ts @@ -126,4 +126,9 @@ export class StringHandler { //#endregion + //#region footer + static readonly ContactMeAt: string = "Contact Me At"; + + //endregion + } \ No newline at end of file diff --git a/src/app/component/cardlayoutcomponent/cardlayout.component.css b/src/app/component/cardlayoutcomponent/cardlayout.component.css index 60ae988..b235acb 100644 --- a/src/app/component/cardlayoutcomponent/cardlayout.component.css +++ b/src/app/component/cardlayoutcomponent/cardlayout.component.css @@ -95,3 +95,11 @@ button { background-color: #2E3445; } + +@media (max-width: 1366px) { + .bi-arrow-right, + .bi-arrow-left, + .col-2{ + display: none; + } +} \ No newline at end of file diff --git a/src/app/component/carouselcomponent/carousel.component.css b/src/app/component/carouselcomponent/carousel.component.css index 4233947..2825d0c 100644 --- a/src/app/component/carouselcomponent/carousel.component.css +++ b/src/app/component/carouselcomponent/carousel.component.css @@ -1,9 +1,4 @@ - -.col-8{ - height: 550px; -} - .progress{ padding: 0%; } @@ -71,13 +66,10 @@ } } - @media (max-width: 767px) { + @media (max-width: 1366px) { .bi-arrow-right, - .bi-arrow-left, - .arrow{ + .bi-arrow-left{ display: none; } - - } \ No newline at end of file diff --git a/src/app/component/carouselcomponent/carousel.component.html b/src/app/component/carouselcomponent/carousel.component.html index 66a2e51..d0cc26a 100644 --- a/src/app/component/carouselcomponent/carousel.component.html +++ b/src/app/component/carouselcomponent/carousel.component.html @@ -1,12 +1,12 @@
-
-
+
+

{{title}}

+
+
+
-
-
-

{{title}}

-
+
@@ -20,7 +20,7 @@

{{title}}

-
+
diff --git a/src/app/component/footercomponent/footer.component.html b/src/app/component/footercomponent/footer.component.html index b3d8d5e..66d6f93 100644 --- a/src/app/component/footercomponent/footer.component.html +++ b/src/app/component/footercomponent/footer.component.html @@ -2,7 +2,7 @@
-

Contact me at

+

{{contactMeAt}}

diff --git a/src/app/component/footercomponent/footer.component.ts b/src/app/component/footercomponent/footer.component.ts index 7addd45..0602fff 100644 --- a/src/app/component/footercomponent/footer.component.ts +++ b/src/app/component/footercomponent/footer.component.ts @@ -1,4 +1,5 @@ import { Component } from "@angular/core"; +import { StringHandler } from "src/app/Utility/stringhandler"; @Component({ selector:'footer-component', @@ -11,5 +12,5 @@ import { Component } from "@angular/core"; }) export class FooterComponent{ - + contactMeAt = StringHandler.ContactMeAt; } \ No newline at end of file diff --git a/src/app/component/maincompontent/main.component.css b/src/app/component/maincompontent/main.component.css index ad1d7b6..1cd9549 100644 --- a/src/app/component/maincompontent/main.component.css +++ b/src/app/component/maincompontent/main.component.css @@ -46,22 +46,23 @@ h5 { } .jumping-arrow { - display: none !important; + display: none; } -@media (max-width: 768px) { +@media (max-width: 1366px) { .jumping-arrow { - display: block !important; + display: block; background-color: transparent; position: fixed; color: #b29600; border: none; border-radius: 5px; - bottom: 5%; + bottom: 10px; cursor: pointer; + z-index: 1; transition: background-color 0.3s; - animation: jump 1s ease-out infinite; + animation: jump 1.2s ease-out infinite; } @keyframes jump { diff --git a/src/app/component/scrollbuttoncomponent/maincompontent/scrollbutton.component.css b/src/app/component/scrollbuttoncomponent/maincompontent/scrollbutton.component.css index 90dd13e..b9f87fb 100644 --- a/src/app/component/scrollbuttoncomponent/maincompontent/scrollbutton.component.css +++ b/src/app/component/scrollbuttoncomponent/maincompontent/scrollbutton.component.css @@ -27,7 +27,7 @@ background-color: #242323; } -@media (max-width: 768px) { +@media (max-width: 1366px) { .scroll-button-container{ display: none; }