37 lines
747 B
CSS
37 lines
747 B
CSS
/*** Logo In Header ***/
|
|
|
|
/* Shared Attributes */
|
|
.banner-top, .banner-middle, .banner-bottom {
|
|
color: white;
|
|
width: 100%;
|
|
height: 69px;
|
|
font-size: 50px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Specific Attributes */
|
|
.banner-top {
|
|
background-color: #663399;
|
|
}
|
|
|
|
.banner-middle {
|
|
background-color: #FF9900;
|
|
}
|
|
|
|
.banner-bottom {
|
|
background-color: #33CC33;
|
|
}
|
|
|
|
.banner-image {
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center, center;
|
|
height: 237px; /* 69*3[banner stripes] + 15*2[padding top+bot] */
|
|
}
|
|
.banner-image01 {
|
|
background-image: url("/files/media/icons/home.jpg");
|
|
}
|
|
.banner-image02 {
|
|
background-image: url("/files/media/icons/contact.jpg");
|
|
}
|