Skip to content

Instantly share code, notes, and snippets.

@samullen
Created August 1, 2010 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samullen/503385 to your computer and use it in GitHub Desktop.
Save samullen/503385 to your computer and use it in GitHub Desktop.
mp.css
#message-popdown {
background-color: #dea852;
display: none;
position: fixed;
z-index: 999;
cursor: pointer;
padding-top: 20px;
padding-bottom: 20px;
-webkit-border-bottom-right-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}
.success-msg, .error-msg, .notice-msg, .warning-msg {
padding-left: 40px;
font-size: 14pt;
font-weight: bold;
margin: 0 auto;
}
.success-msg {
color: #00aa00;
}
.error-msg {
color: #dd0000;
}
.notice-msg {
color: #2b0100;
}
.warning-msg {
color: #ec8049;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment