mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
b1e3dd2212
This should give GitX some more consistency. Also, it will give us a basis to build further changes on.
23 lines
347 B
CSS
23 lines
347 B
CSS
#notification {
|
|
margin: 5px;
|
|
padding: 3px;
|
|
clear: both;
|
|
|
|
border: 1px solid black;
|
|
background-color: #f3f3f3;
|
|
|
|
text-align: center;
|
|
font-size: 80%;
|
|
|
|
-webkit-border-radius: 2px;
|
|
}
|
|
|
|
#notification.success {
|
|
background-color: #CCFF99;
|
|
border: 1px solid #99CC66;
|
|
}
|
|
|
|
#notification.fail {
|
|
background-color: #ff9999;
|
|
border: 1px solid #cc6666;
|
|
} |