-
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.
Added mail subscription section component
- Loading branch information
Showing
2 changed files
with
46 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,16 @@ | ||
.section-subscribe { | ||
padding: 5em 0; | ||
} | ||
.form-control { | ||
outline: none; | ||
-webkit-box-shadow: none !important; | ||
box-shadow: none !important; | ||
height: 50px; | ||
} | ||
.form-control:focus{ | ||
-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) !important; | ||
box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.2) !important; | ||
} | ||
.form-control:focus, .form-control:active { | ||
outline: none; | ||
} |
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,30 @@ | ||
<section class="section-subscribe bg-light"> | ||
<div class="container"> | ||
<div class="row justify-content-center align-items-center"> | ||
<div class="col md-12 mb-4"> | ||
<h1 class="heading"> | ||
Get news & updates | ||
</h1> | ||
</div> | ||
<div class="col-md-12"> | ||
<form action="" method="POST"> | ||
<div class="row"> | ||
<div class="col-md-4 mb-4"> | ||
<input type="text" class="form-control" placeholder="Your Name here"> | ||
</div> | ||
|
||
<div class="col-md-4 mb-4"> | ||
<input type="email" class="form-control" placeholder="Your email here"> | ||
</div> | ||
|
||
<div class="col-md-4 mb-4"> | ||
<input type="submit" class="btn btn-secondary w-100" value="Subscribe"> | ||
</div> | ||
|
||
</div> | ||
</form> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</section> |