Skip to content

Commit

Permalink
blue css
Browse files Browse the repository at this point in the history
  • Loading branch information
lewypopescu committed Aug 5, 2024
1 parent f78450a commit 2da7649
Show file tree
Hide file tree
Showing 6 changed files with 91 additions and 22 deletions.
27 changes: 23 additions & 4 deletions src/components/Cast/Cast.module.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}

Expand All @@ -8,15 +10,32 @@
}

.item {
margin-bottom: 20px;
margin-bottom: 30px;
text-align: center;
}

.image {
width: 100px;
margin-right: 20px;
width: 150px;
border-radius: 10px;
}

p {
margin: 10px 0 0;
color: #003366;
font-weight: bold;
}

.button {
padding: 8px 16px;
background-color: #66b2ff;
border: none;
padding: 10px 20px;
cursor: pointer;
margin-bottom: 20px;
color: white;
font-weight: bold;
border-radius: 5px;
}

.button:hover {
background-color: #005bb5;
}
12 changes: 8 additions & 4 deletions src/components/Home/Home.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
}

.title {
font-size: 24px;
margin-bottom: 10px;
font-size: 28px;
color: #003366;
margin-bottom: 20px;
text-align: center;
}

.list {
Expand All @@ -13,14 +15,16 @@
}

.item {
margin-bottom: 8px;
margin-bottom: 10px;
}

.link {
color: #007bff;
color: #003366;
font-size: 18px;
text-decoration: none;
}

.link:hover {
color: #66b2ff;
text-decoration: underline;
}
27 changes: 24 additions & 3 deletions src/components/MovieDetails/MovieDetails.module.css
Original file line number Diff line number Diff line change
@@ -1,23 +1,44 @@
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}

.button {
padding: 8px 16px;
background-color: #66b2ff;
border: none;
padding: 10px 20px;
cursor: pointer;
margin-bottom: 20px;
color: white;
font-weight: bold;
border-radius: 5px;
}

.button:hover {
background-color: #005bb5;
}

.poster {
width: 200px;
width: 300px;
float: left;
margin-right: 20px;
}

h2 {
color: #003366;
}

h3 {
color: #005bb5;
}

.link {
color: #007bff;
color: #003366;
text-decoration: none;
}

.link:hover {
color: #66b2ff;
text-decoration: underline;
}
3 changes: 1 addition & 2 deletions src/components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ const Navbar = () => {
<nav className={styles.navbar}>
<Link className={styles.link} to="/">
Home
</Link>{' '}
|
</Link>
<Link className={styles.link} to="/movies">
Movies
</Link>
Expand Down
17 changes: 13 additions & 4 deletions src/components/Navbar/Navbar.module.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
.navbar {
padding: 10px;
background-color: #18176e;
color: white;
background-color: #003366;
padding: 10px 20px;
display: flex;
justify-content: center;
align-items: center;
}

.link {
margin: 0 10px;
margin-right: 20px;
color: white;
text-decoration: none;
font-weight: bold;
font-size: 24px;
}

.link:last-child {
margin-right: 0;
}

.link:hover {
color: #66b2ff;
text-decoration: underline;
}
27 changes: 22 additions & 5 deletions src/components/Reviews/Reviews.module.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}

Expand All @@ -8,15 +10,30 @@
}

.item {
margin-bottom: 20px;
margin-bottom: 40px;
}

.message {
padding: 20px;
font-size: 18px;
h4 {
color: #003366;
margin-bottom: 10px;
}

p {
color: #333333;
line-height: 1.6;
}

.button {
padding: 8px 16px;
background-color: #66b2ff;
border: none;
padding: 10px 20px;
cursor: pointer;
margin-bottom: 20px;
color: white;
font-weight: bold;
border-radius: 5px;
}

.button:hover {
background-color: #005bb5;
}

0 comments on commit 2da7649

Please sign in to comment.