Add success message div and transparency to div backgrounds

#message messed with the success messages, decided to make a div
for that too
This commit is contained in:
Arctic Code 2013-08-26 09:32:46 -05:00
parent e5b4fadb10
commit 742a2dea2d

View File

@ -147,12 +147,31 @@ body{
#message #error{ #message #error{
float: center; float: center;
text-align: center; text-align: center;
background-color: #cb3434; background: rgba(203, 52, 52, 0.7);
color: #fff;
border-radius: 5px; border-radius: 5px;
padding: 5px; padding: 5px;
width: 66%; width: 66%;
} }
#message #success{
float: center;
text-align: center;
background: rgba(0, 158, 0, 0.7);
color: #fff;
border-radius: 5px;
padding: 5px;
width: 66%;
}
#message a{
color: #76b4ef;
}
#message a:hover{
color: #e2e6e9;
}
#footer { #footer {
height: 46px; height: 46px;
background-color: #333; background-color: #333;