Skip to content

Commit 4e62cce

Browse files
committed
Update: Add context referencing for chatbot (#196)
1 parent 3ef49cc commit 4e62cce

File tree

10 files changed

+21
-21
lines changed

10 files changed

+21
-21
lines changed

MovieVerse-Frontend/css/style.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,7 @@ header h1 {
12231223
.actor-header {
12241224
text-align: center;
12251225
align-self: center;
1226-
font-size: 2.3rem;
1226+
font-size: 2.2rem;
12271227
font-weight: bold;
12281228
color: #ffeb3b;
12291229
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
@@ -1248,7 +1248,7 @@ header h1 {
12481248
.director-header {
12491249
text-align: center;
12501250
align-self: center;
1251-
font-size: 2.3rem;
1251+
font-size: 2.2rem;
12521252
font-weight: bold;
12531253
color: #ffeb3b;
12541254
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
@@ -3707,7 +3707,7 @@ body {
37073707
.company-header {
37083708
text-align: center;
37093709
align-self: center;
3710-
font-size: 2.3rem;
3710+
font-size: 2.2rem;
37113711
font-weight: bold;
37123712
color: #ffeb3b;
37133713
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

MovieVerse-Mobile/platforms/android/app/src/main/assets/www/MovieVerse-Frontend/css/style.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ header h1 {
12141214
.movie-header {
12151215
text-align: center;
12161216
align-self: center;
1217-
font-size: 2.5rem;
1217+
font-size: 2.2rem;
12181218
font-weight: bold;
12191219
color: #ffeb3b;
12201220
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
@@ -1223,7 +1223,7 @@ header h1 {
12231223
.actor-header {
12241224
text-align: center;
12251225
align-self: center;
1226-
font-size: 2.5rem;
1226+
font-size: 2.2rem;
12271227
font-weight: bold;
12281228
color: #ffeb3b;
12291229
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
@@ -1248,7 +1248,7 @@ header h1 {
12481248
.director-header {
12491249
text-align: center;
12501250
align-self: center;
1251-
font-size: 2.5rem;
1251+
font-size: 2.2rem;
12521252
font-weight: bold;
12531253
color: #ffeb3b;
12541254
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
@@ -3707,7 +3707,7 @@ body {
37073707
.company-header {
37083708
text-align: center;
37093709
align-self: center;
3710-
font-size: 2.5rem;
3710+
font-size: 2.2rem;
37113711
font-weight: bold;
37123712
color: #ffeb3b;
37133713
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

MovieVerse-Mobile/platforms/android/app/src/main/assets/www/MovieVerse-Frontend/html/about.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ <h1 id="my-heading" style="margin-bottom: -9px" class="notranslate">
279279
</nav>
280280
<main id="main2" style="margin: 0 auto">
281281
<h2 id="aboutHeader" style="align-self: center; cursor: pointer">About The MovieVerse</h2>
282-
<p style="color: white; text-align: center">Welcome to The MovieVerse, your ultimate database for exploring the magic of movies. Created by <strong><a id="profileLink" href="http://github.com/hoangsonww">Son Nguyen</a></strong> in 2023 with a vision to celebrate cinematic art, MovieVerse offers a unique but comprehensive platform for nearly <strong>1 million</strong> movie lovers worldwide to discover, engage, and immerse themselves in the world of film.</p>
282+
<p style="color: white; text-align: center">Welcome to The MovieVerse, your ultimate database for exploring the magic of movies. Created by <strong><a id="profileLink" href="http://github.com/hoangsonww">Son Nguyen</a></strong> in 2023 with a vision to celebrate cinematic art, MovieVerse offers a unique but comprehensive platform for nearly <strong>one million</strong> movie lovers worldwide to discover, engage, and immerse themselves in the world of film.</p>
283283
<div style="width: 100%">
284284
<img id="logo" src="../../images/uwu.webp" alt="The MovieVerse" style="width: 200px; max-width: 800px; margin: 20px auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)">
285285
</div>

MovieVerse-Mobile/platforms/android/app/src/main/assets/www/MovieVerse-Frontend/js/tv-details.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@ async function populateTvSeriesDetails(tvSeries, imdbRating) {
11191119

11201120
closeModalBtn.onclick = function() {
11211121
modal.remove();
1122-
imageElement.src = modalImage.src.replace('w1280', 'w780'); // Update the main image on modal close
1122+
imageElement.src = modalImage.src.replace('w1280', 'w780');
11231123
};
11241124

11251125
modal.addEventListener('click', function(event) {

MovieVerse-Mobile/platforms/ios/www/MovieVerse-Frontend/css/style.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ header h1 {
12141214
.movie-header {
12151215
text-align: center;
12161216
align-self: center;
1217-
font-size: 2.5rem;
1217+
font-size: 2.2rem;
12181218
font-weight: bold;
12191219
color: #ffeb3b;
12201220
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
@@ -1223,7 +1223,7 @@ header h1 {
12231223
.actor-header {
12241224
text-align: center;
12251225
align-self: center;
1226-
font-size: 2.5rem;
1226+
font-size: 2.2rem;
12271227
font-weight: bold;
12281228
color: #ffeb3b;
12291229
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
@@ -1248,7 +1248,7 @@ header h1 {
12481248
.director-header {
12491249
text-align: center;
12501250
align-self: center;
1251-
font-size: 2.5rem;
1251+
font-size: 2.2rem;
12521252
font-weight: bold;
12531253
color: #ffeb3b;
12541254
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
@@ -3707,7 +3707,7 @@ body {
37073707
.company-header {
37083708
text-align: center;
37093709
align-self: center;
3710-
font-size: 2.5rem;
3710+
font-size: 2.2rem;
37113711
font-weight: bold;
37123712
color: #ffeb3b;
37133713
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

MovieVerse-Mobile/platforms/ios/www/MovieVerse-Frontend/html/about.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ <h1 id="my-heading" style="margin-bottom: -9px" class="notranslate">
279279
</nav>
280280
<main id="main2" style="margin: 0 auto">
281281
<h2 id="aboutHeader" style="align-self: center; cursor: pointer">About The MovieVerse</h2>
282-
<p style="color: white; text-align: center">Welcome to The MovieVerse, your ultimate database for exploring the magic of movies. Created by <strong><a id="profileLink" href="http://github.com/hoangsonww">Son Nguyen</a></strong> in 2023 with a vision to celebrate cinematic art, MovieVerse offers a unique but comprehensive platform for nearly <strong>1 million</strong> movie lovers worldwide to discover, engage, and immerse themselves in the world of film.</p>
282+
<p style="color: white; text-align: center">Welcome to The MovieVerse, your ultimate database for exploring the magic of movies. Created by <strong><a id="profileLink" href="http://github.com/hoangsonww">Son Nguyen</a></strong> in 2023 with a vision to celebrate cinematic art, MovieVerse offers a unique but comprehensive platform for nearly <strong>one million</strong> movie lovers worldwide to discover, engage, and immerse themselves in the world of film.</p>
283283
<div style="width: 100%">
284284
<img id="logo" src="../../images/uwu.webp" alt="The MovieVerse" style="width: 200px; max-width: 800px; margin: 20px auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)">
285285
</div>

MovieVerse-Mobile/platforms/ios/www/MovieVerse-Frontend/js/tv-details.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@ async function populateTvSeriesDetails(tvSeries, imdbRating) {
11191119

11201120
closeModalBtn.onclick = function() {
11211121
modal.remove();
1122-
imageElement.src = modalImage.src.replace('w1280', 'w780'); // Update the main image on modal close
1122+
imageElement.src = modalImage.src.replace('w1280', 'w780');
11231123
};
11241124

11251125
modal.addEventListener('click', function(event) {

MovieVerse-Mobile/www/MovieVerse-Frontend/css/style.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ header h1 {
12141214
.movie-header {
12151215
text-align: center;
12161216
align-self: center;
1217-
font-size: 2.5rem;
1217+
font-size: 2.2rem;
12181218
font-weight: bold;
12191219
color: #ffeb3b;
12201220
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
@@ -1223,7 +1223,7 @@ header h1 {
12231223
.actor-header {
12241224
text-align: center;
12251225
align-self: center;
1226-
font-size: 2.5rem;
1226+
font-size: 2.2rem;
12271227
font-weight: bold;
12281228
color: #ffeb3b;
12291229
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
@@ -1248,7 +1248,7 @@ header h1 {
12481248
.director-header {
12491249
text-align: center;
12501250
align-self: center;
1251-
font-size: 2.5rem;
1251+
font-size: 2.2rem;
12521252
font-weight: bold;
12531253
color: #ffeb3b;
12541254
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
@@ -3707,7 +3707,7 @@ body {
37073707
.company-header {
37083708
text-align: center;
37093709
align-self: center;
3710-
font-size: 2.5rem;
3710+
font-size: 2.2rem;
37113711
font-weight: bold;
37123712
color: #ffeb3b;
37133713
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

MovieVerse-Mobile/www/MovieVerse-Frontend/html/about.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ <h1 id="my-heading" style="margin-bottom: -9px" class="notranslate">
279279
</nav>
280280
<main id="main2" style="margin: 0 auto">
281281
<h2 id="aboutHeader" style="align-self: center; cursor: pointer">About The MovieVerse</h2>
282-
<p style="color: white; text-align: center">Welcome to The MovieVerse, your ultimate database for exploring the magic of movies. Created by <strong><a id="profileLink" href="http://github.com/hoangsonww">Son Nguyen</a></strong> in 2023 with a vision to celebrate cinematic art, MovieVerse offers a unique but comprehensive platform for nearly <strong>1 million</strong> movie lovers worldwide to discover, engage, and immerse themselves in the world of film.</p>
282+
<p style="color: white; text-align: center">Welcome to The MovieVerse, your ultimate database for exploring the magic of movies. Created by <strong><a id="profileLink" href="http://github.com/hoangsonww">Son Nguyen</a></strong> in 2023 with a vision to celebrate cinematic art, MovieVerse offers a unique but comprehensive platform for nearly <strong>one million</strong> movie lovers worldwide to discover, engage, and immerse themselves in the world of film.</p>
283283
<div style="width: 100%">
284284
<img id="logo" src="../../images/uwu.webp" alt="The MovieVerse" style="width: 200px; max-width: 800px; margin: 20px auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)">
285285
</div>

MovieVerse-Mobile/www/MovieVerse-Frontend/js/tv-details.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@ async function populateTvSeriesDetails(tvSeries, imdbRating) {
11191119

11201120
closeModalBtn.onclick = function() {
11211121
modal.remove();
1122-
imageElement.src = modalImage.src.replace('w1280', 'w780'); // Update the main image on modal close
1122+
imageElement.src = modalImage.src.replace('w1280', 'w780');
11231123
};
11241124

11251125
modal.addEventListener('click', function(event) {

0 commit comments

Comments
 (0)