-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from ihughes22/photobook-flip
added css styling for login, registration and flip
- Loading branch information
Showing
8 changed files
with
351 additions
and
186 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
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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* Import DM Sans font */ | ||
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); | ||
|
||
.login-button { | ||
display: inline-block; | ||
padding: 10px 20px; | ||
font-size: 16px; | ||
font-weight: bold; | ||
text-align: center; | ||
text-decoration: none; | ||
font-family: 'DM Sans', sans-serif; | ||
border-radius: 25px; | ||
background-color: #434DA1; | ||
color: #ffffff; | ||
cursor: pointer; | ||
transition: background-color 0.3s ease; | ||
margin-right: 10px; | ||
} | ||
|
||
.register-button { | ||
display: inline-block; | ||
padding: 10px 20px; | ||
font-size: 16px; | ||
font-weight: bold; | ||
text-align: center; | ||
text-decoration: none; | ||
font-family: 'DM Sans', sans-serif; | ||
border-radius: 25px; | ||
background-color: #ffffff; | ||
color: #434DA1; | ||
cursor: pointer; | ||
transition: background-color 0.3s ease; | ||
} | ||
|
||
.Login { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
min-height: 100vh; | ||
font-family: 'DM Sans', sans-serif; | ||
} | ||
|
||
.box { | ||
border: 1px solid #ccc; | ||
border-radius: 20px; | ||
padding: 50px; | ||
width: 600px; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
background-color: #e5e6f4; | ||
text-align: center; | ||
font-family: 'DM Sans', sans-serif; | ||
} | ||
|
||
.Login h2 { | ||
margin-bottom: 20px; | ||
} | ||
|
||
.Login input { | ||
padding: 10px; | ||
margin: 5px 0; | ||
width: 100%; | ||
border: 1px solid #ccc; | ||
border-radius: 4px; | ||
} | ||
|
||
.rounded-input{ | ||
width: 100%; | ||
padding: 10px; | ||
border: 1px solid #ccc; | ||
border-radius: 20px; | ||
box-sizing: border-box; | ||
} |
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
Oops, something went wrong.