Skip to content

Commit

Permalink
Create style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayush7614 authored Jul 24, 2020
1 parent 77175c8 commit e4db3b4
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions style.css
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;
}

0 comments on commit e4db3b4

Please sign in to comment.