Skip to content

Commit

Permalink
Merge branch 'main' into 14-course-files-page
Browse files Browse the repository at this point in the history
  • Loading branch information
anamboijohn authored May 30, 2024
2 parents 50990b6 + 0fdbc0c commit 7d08c00
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
body {
/* body {
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url("./assets/gradient_2.jpg");
}
} */
2 changes: 1 addition & 1 deletion src/pages/SignIn.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const SignIn = () => {
const [showPassword, setShowPassword] = useState(false);

return (
<div className="container">
<div className="SignIncontainer">
<h1 className="signInText">Sign in</h1>
<div className="part2">
<h2 className="welcomeText">Welcome back</h2>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/SignUp.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const SignUp = () => {


return (
<div className="container">
<div className="SignUpcontainer">
<h1 className="signInText">Sign up</h1>
<div className="part2">
<h2 className="welcomeText">Welcome</h2>
Expand Down
3 changes: 3 additions & 0 deletions src/pages/landingpage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ const Landingpage = () => {
return (
<div>
<div className="App">
<Link to="/Home" style={{ textDecoration: "None", color: "#fff" }}>
Home
</Link>
<div className="container">
<div className="content">
<h2 style={{color: '#fff'}}>CBET</h2>
Expand Down
7 changes: 4 additions & 3 deletions src/styles/landingPage.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
line-height: 2;
margin-top: 1rem;
}
.content button{
.content a{
display: block;
margin: 2rem 0;
width: 21%;
Expand All @@ -38,7 +38,7 @@
font-size: 1rem;
border-radius: 20px;
border: 1px solid #ddd;
background: inherit;
background-color: inherit;
color: #fff;
transition: all 0.3s ease-in-out;

Expand Down Expand Up @@ -70,6 +70,7 @@
display: flex;
flex-direction: row;


}

.App {
Expand Down Expand Up @@ -109,7 +110,7 @@
.content h2{
font-size: 3.5rem;
}
.content button{
.content a{
width: 90%;
margin: 10px 0px;
background-color: #011298;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/signin.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
font-family: "poppins";
}

.container {
.SignIncontainer {
display: flex;
flex-direction: column;
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/signup.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
font-family: "poppins";
}

.container {
.SignUpcontainer {
display: flex;
flex-direction: column;
align-items: center;
Expand Down

0 comments on commit 7d08c00

Please sign in to comment.