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
1 changed files with 20 additions and 1 deletions

View File

@ -147,12 +147,31 @@ body{
#message #error{
float: center;
text-align: center;
background-color: #cb3434;
background: rgba(203, 52, 52, 0.7);
color: #fff;
border-radius: 5px;
padding: 5px;
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 {
height: 46px;
background-color: #333;