49 lines
763 B
CSS
49 lines
763 B
CSS
/**
|
|
* Some GoKEV-specific styling
|
|
*/
|
|
|
|
div.transbox {
|
|
background-color: #000000;
|
|
opacity: 0.7;
|
|
/*
|
|
max-height: 500px;
|
|
max-width: 450;
|
|
*/
|
|
margin: 5%;
|
|
text-align: center;
|
|
filter: alpha(opacity=60); /* For IE8 and earlier */
|
|
border: 2px solid white;
|
|
|
|
}
|
|
|
|
div.transbox p {
|
|
margin: 5%;
|
|
font-weight: bold;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
}
|
|
|
|
div.transbox h1 {
|
|
display: block;
|
|
font-size: 2.8em;
|
|
text-align: center;
|
|
margin-top: .5em;
|
|
margin-bottom: .3em;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
font-weight: bold;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
div.transbox h2 {
|
|
display: block;
|
|
font-size: 2.8em;
|
|
text-align: center;
|
|
margin-top: -1em;
|
|
margin-bottom: .3em;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
font-weight: bold;
|
|
color: #FFFFFF;
|
|
}
|