Last active
February 14, 2019 15:43
-
-
Save ameeker/bd68fdc0f26b745f14af499667f3bb06 to your computer and use it in GitHub Desktop.
Alert Boxes, OptinMonster
This file contains hidden or 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
<div class="alert alert-warning">YOUR CONTENT HERE</div> | |
.alert { | |
padding: 20px; | |
margin: 30px 0; | |
border: 1px solid transparent; | |
border-radius: 3px; | |
font-size: 16px; | |
line-height: 1.6; | |
} | |
.alert-warning { | |
background-color: #f9fbff; | |
border-color: #f1f5fc; | |
color: #333333; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment