24 lines
449 B
CSS
24 lines
449 B
CSS
/*** Logo In Header ***/
|
|
|
|
/* Shared Attributes */
|
|
.banner-top, .banner-middle, .banner-bottom {
|
|
color: white;
|
|
width: 100%;
|
|
/* height: 69px; TBD/TODO: Still testing this removal. */
|
|
font-size: 50px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Specific Attributes */
|
|
.banner-top {
|
|
background-color: #663399;
|
|
}
|
|
|
|
.banner-middle {
|
|
background-color: #FF9900;
|
|
}
|
|
|
|
.banner-bottom {
|
|
background-color: #33CC33;
|
|
}
|