Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add className to element <p> in signUp pages directory and modify relevant files #53

Merged
merged 5 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontEnd/src/pages/SignupPages/DownloadOffline.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function DownloadOffline(){
</div>
<div className="textOffline">
<h2>Download your shows to watch offline</h2>
<p>Watch on a plane, train, or submarine...</p>
<p className="sinUpPText">Watch on a plane, train, or submarine...</p>
</div>
</div>
</>
Expand Down
2 changes: 1 addition & 1 deletion frontEnd/src/pages/SignupPages/KidsProfile.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
font-weight: 900;
}

.textKidsProfile p{
.sinUpPText{
font-size: 1.5rem;
font-weight: 400;
}
Expand Down
2 changes: 1 addition & 1 deletion frontEnd/src/pages/SignupPages/KidsProfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function KidsProfile(){
<div className="kidsProfile">
<div className="textKidsProfile">
<h2>Create profiles for kids</h2>
<p>Send kids on adventures with their favorite characters in a space made just for them—free with your membership.</p>
<p className="sinUpPText">Send kids on adventures with their favorite characters in a space made just for them—free with your membership.</p>
</div>
<div className="kidsImage">
<img src="https://occ-0-70-1723.1.nflxso.net/dnm/api/v6/19OhWN2dO19C9txTON9tvTFtefw/AAAABejKYujIIDQciqmGJJ8BtXkYKKTi5jiqexltvN1YmvXYIfX8B9CYwooUSIzOKneblRFthZAFsYLMgKMyNfeHwk16DmEkpIIcb6A3.png?r=f55"></img>
Expand Down
4 changes: 1 addition & 3 deletions frontEnd/src/pages/SignupPages/Signup.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ h3,.h3{
}

.background-container {
background-image: linear-gradient(890deg, black, transparent), url("https://assets.nflxext.com/ffe/siteui/vlv3/c7f07b68-7989-4ff7-a31e-11c17dcc2fea/5cc79a46-0ee9-43ce-8431-6f4e020c4907/CA-en-20240422-popsignuptwoweeks-perspective_alpha_website_large.jpg");
background-size: cover;
background-position: center;
background-image: linear-gradient(75deg, black, transparent), url("https://assets.nflxext.com/ffe/siteui/vlv3/c7f07b68-7989-4ff7-a31e-11c17dcc2fea/5cc79a46-0ee9-43ce-8431-6f4e020c4907/CA-en-20240422-popsignuptwoweeks-perspective_alpha_website_large.jpg");
background-repeat: no-repeat;
width: 100%;
position: absolute;
Expand Down
2 changes: 1 addition & 1 deletion frontEnd/src/pages/SignupPages/TV.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ h2{
color: white;
}

.tvText p{
.sinUpPText{
font-size: 1.5rem;
font-weight: 400;
margin: 1rem 0 0;
Expand Down
2 changes: 1 addition & 1 deletion frontEnd/src/pages/SignupPages/TV.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function TV(){
<div className = "tvWrapper" style={{paddingTop:"5%"}}>
<div className = "tvText">
<h2>Enjoy on your TV</h2>
<p>Watch on Smart TVs, Playstation, Xbox, Chromecast, Apple TV, Blu-ray players, and more.</p>
<p className="sinUpPText">Watch on Smart TVs, Playstation, Xbox, Chromecast, Apple TV, Blu-ray players, and more.</p>
</div>
<div className = "tvMp4">
<img className="desktopImg" src = "https://assets.nflxext.com/ffe/siteui/acquisition/ourStory/fuji/desktop/tv.png"></img>
Expand Down
2 changes: 1 addition & 1 deletion frontEnd/src/pages/SignupPages/WatchEverywhere.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function WatchEverywhere(){
</div>
<div className="textmac">
<h2>Watch everywhere</h2>
<p>Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.</p>
<p className="sinUpPText">Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.</p>
</div>
</div>
</>
Expand Down
Loading