From fd360cabfe3b48369d250eb70354bd41f83e53bb Mon Sep 17 00:00:00 2001 From: Son Nguyen Hoang Date: Tue, 12 Mar 2024 19:10:35 -0400 Subject: [PATCH 01/15] Fix: Updated 404 page (#82) --- 1ee157648b374c35b55ea4685a90ecbe.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 1ee157648b374c35b55ea4685a90ecbe.txt diff --git a/1ee157648b374c35b55ea4685a90ecbe.txt b/1ee157648b374c35b55ea4685a90ecbe.txt deleted file mode 100644 index e69de29b..00000000 From 8033815ff8104d36e056041eb7964f409f320b93 Mon Sep 17 00:00:00 2001 From: Son Nguyen Hoang Date: Tue, 12 Mar 2024 19:11:58 -0400 Subject: [PATCH 02/15] Fix: Updated README (#82) --- .vscode/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/README.md b/.vscode/README.md index 7696778f..bc1418f8 100644 --- a/.vscode/README.md +++ b/.vscode/README.md @@ -42,4 +42,4 @@ The `.vscode` directory is often included in the version control system to share The `.vscode` directory and the `settings.json` file play a vital role in maintaining a consistent and productive development environment across all contributors. Proper management of this configuration file is key to a harmonious workflow within the VS Code IDE. ---- +--- \ No newline at end of file From 49353be8371e3a30ab6413a4cd1526c855648533 Mon Sep 17 00:00:00 2001 From: Son Nguyen Hoang Date: Tue, 12 Mar 2024 19:12:04 -0400 Subject: [PATCH 03/15] Fix: Updated README (#82) --- .vscode/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/README.md b/.vscode/README.md index bc1418f8..7696778f 100644 --- a/.vscode/README.md +++ b/.vscode/README.md @@ -42,4 +42,4 @@ The `.vscode` directory is often included in the version control system to share The `.vscode` directory and the `settings.json` file play a vital role in maintaining a consistent and productive development environment across all contributors. Proper management of this configuration file is key to a harmonious workflow within the VS Code IDE. ---- \ No newline at end of file +--- From 15ba59b5b4ab8159736bf1b8ecef5b4ddc84fb3a Mon Sep 17 00:00:00 2001 From: Son Nguyen Hoang Date: Tue, 12 Mar 2024 19:15:18 -0400 Subject: [PATCH 04/15] Fix: Updated scss (#82) --- .idea/watcherTasks.xml | 25 +++++++++ MovieVerse-Frontend/css/index.scss | 88 ++++++++++++++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 .idea/watcherTasks.xml create mode 100644 MovieVerse-Frontend/css/index.scss diff --git a/.idea/watcherTasks.xml b/.idea/watcherTasks.xml new file mode 100644 index 00000000..c70980f4 --- /dev/null +++ b/.idea/watcherTasks.xml @@ -0,0 +1,25 @@ + + + + + + + + \ No newline at end of file diff --git a/MovieVerse-Frontend/css/index.scss b/MovieVerse-Frontend/css/index.scss new file mode 100644 index 00000000..5e077b64 --- /dev/null +++ b/MovieVerse-Frontend/css/index.scss @@ -0,0 +1,88 @@ +$font-family-poppins: "Poppins", sans-serif; +$background-color-primary: #7378c5; +$hover-color: #ff8623; +$link-color: white; +$link-hover-color: #f509d9; + +@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap'); + +* { + box-sizing: border-box; +} + +body { + background: url("../../images/universe-1.png") no-repeat center center fixed; + background-size: cover; + font-family: $font-family-poppins; + margin: 0; + align-content: center; + overflow-x: hidden; + min-height: 100vh; + overflow-y: auto; +} + +%button-style { + background-color: $background-color-primary; + color: black; + border-radius: 8px; + border: none; + cursor: pointer; + font: inherit; + &:hover { + background-color: $hover-color; + transition: 0.3s ease-in; + } +} + +#movie-match-btn { + @extend %button-style; + position: fixed; + bottom: 220px; + right: 20px; +} + +#submit-comment { + @extend %button-style; + padding: 10px 15px; +} + +// Link styles +%link-style { + color: $link-color; + text-decoration: underline; + &:hover { + color: $link-hover-color; + } +} + +#cast-info, #similar-tv, #director-link { + @extend %link-style; +} + +@mixin modal-style { + display: flex; + align-items: center; + justify-content: space-between; + padding: 0 10px; + margin-top: 5px; +} + +.modal-header { + @include modal-style; +} + +.comments-controls { + display: flex; + align-items: center; + button:disabled { + cursor: not-allowed; + } + &.justify-start { + justify-content: start; + } + &.justify-center { + justify-content: center; + gap: 10px; + width: 100%; + } +} From 400b81bc86a6384f0418e19b3fc4e08141eb2563 Mon Sep 17 00:00:00 2001 From: Son Nguyen Hoang Date: Tue, 12 Mar 2024 19:15:28 -0400 Subject: [PATCH 05/15] Fix: Updated scss (#82) --- MovieVerse-Frontend/css/index.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/MovieVerse-Frontend/css/index.scss b/MovieVerse-Frontend/css/index.scss index 5e077b64..786e8d13 100644 --- a/MovieVerse-Frontend/css/index.scss +++ b/MovieVerse-Frontend/css/index.scss @@ -46,7 +46,6 @@ body { padding: 10px 15px; } -// Link styles %link-style { color: $link-color; text-decoration: underline; From 7534c5e7010555dbea2513fa6bf5277f7276ec57 Mon Sep 17 00:00:00 2001 From: Son Nguyen Hoang Date: Tue, 12 Mar 2024 19:16:28 -0400 Subject: [PATCH 06/15] Fix: Updated scss (#82) --- .idea/watcherTasks.xml | 2 +- MovieVerse-Frontend/css/profile.scss | 87 ++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+), 1 deletion(-) create mode 100644 MovieVerse-Frontend/css/profile.scss diff --git a/.idea/watcherTasks.xml b/.idea/watcherTasks.xml index c70980f4..42014037 100644 --- a/.idea/watcherTasks.xml +++ b/.idea/watcherTasks.xml @@ -1,7 +1,7 @@ - +