Last active
May 31, 2017 03:16
-
-
Save lizardking8610/cd89b2430988badc8ee50416f94dcd30 to your computer and use it in GitHub Desktop.
stitched border
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
| .stitched { | |
| padding: 20px; | |
| margin: 10px; | |
| background: #67bbab; | |
| color: #fff; | |
| font-size: 21px; | |
| font-weight: bold; | |
| line-height: 1.3em; | |
| border: 2px dashed #fff; | |
| border-radius: 10px; | |
| box-shadow: 0 0 0 4px #67bbab, 2px 1px 6px 4px rgba(10, 10, 0, 0.5); | |
| text-shadow: -1px -1px #68868e; | |
| font-weight: normal; | |
| } | |
| /* This One -Below- Looks Better on the JCF site */ | |
| .stitched { | |
| padding: 20px 10px; | |
| margin: 10px; | |
| background: #67bbab; | |
| color: #ffffff; | |
| font-size: 21px; | |
| font-weight: bold; | |
| line-height: 1.3em; | |
| border: 2px dashed #ffffff; | |
| border-radius: 10px; | |
| box-shadow: 0 0 0 4px #67bbab, 2px 1px 6px 4px rgba(10, 10, 0, 0.5); | |
| text-shadow: -1px -1px rgba(104, 134, 142, 0.57); | |
| font-weight: normal; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This one looks better on the JCF site
.stitched { padding: 20px 10px; margin: 10px; background: #67bbab; color: #ffffff; font-size: 21px; font-weight: bold; line-height: 1.3em; border: 2px dashed #ffffff; border-radius: 10px; box-shadow: 0 0 0 4px #67bbab, 2px 1px 6px 4px rgba(10, 10, 0, 0.5); text-shadow: -1px -1px rgba(104, 134, 142, 0.57); font-weight: normal; }