Last active
November 9, 2017 14:45
-
-
Save studiopress/506a3eb304b391e097ddc691a0938b06 to your computer and use it in GitHub Desktop.
Add custom entry message styles.
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
/* Entry Messages | |
--------------------------------------------- */ | |
.message { | |
padding: 25px 30px; | |
} | |
.message, | |
.message a { | |
color: #fff; | |
} | |
.message a { | |
border-bottom: 1px solid #fff; | |
} | |
.message a:hover, | |
.message a:focus { | |
border-bottom: none; | |
} | |
.message.green { | |
background-color: #00a86d; | |
} | |
.message.orange { | |
background-color: #cc4b00; | |
} | |
.message.red { | |
background-color: #be0040; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment