-
Notifications
You must be signed in to change notification settings - Fork 10
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
Showing
1 changed file
with
62 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
*{ | ||
margin: 0px; | ||
padding: 0px; | ||
box-sizing: border-box; | ||
|
||
font-family: 'Roboto', sans-serif; | ||
} | ||
|
||
.container{ | ||
max-width: 80%; | ||
padding: 34px; | ||
margin: auto; | ||
} | ||
|
||
.container h1 { | ||
text-align: center; | ||
font-family: 'Sriracha', cursive; | ||
font-size: 40px; | ||
} | ||
|
||
p{ | ||
font-size: 17px; | ||
text-align: center; | ||
font-family: 'Sriracha', cursive; | ||
} | ||
|
||
input, textarea{ | ||
|
||
border: 2px solid black; | ||
border-radius: 6px; | ||
outline: none; | ||
font-size: 16px; | ||
width: 80%; | ||
margin: 11px 0px; | ||
padding: 7px; | ||
} | ||
form{ | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
} | ||
|
||
.btn{ | ||
color: white; | ||
background: purple; | ||
padding: 8px 12px; | ||
font-size: 20px; | ||
border: 2px solid white; | ||
border-radius: 14px; | ||
cursor: pointer; | ||
} | ||
|
||
.bg{ | ||
width: 100%; | ||
position: absolute; | ||
z-index: -1; | ||
opacity: 0.6; | ||
} | ||
.submitMsg{ | ||
color: green; | ||
} |