generated from goitacademy/react-homework-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f78450a
commit 2da7649
Showing
6 changed files
with
91 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters