1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
#content {
position: fixed;
top: 100px; /* when changing this, also change #banner and #iconbar */
left: 16%; /* when changing this, also change #banner and #iconbar */
bottom: 0;
width: 84%; /* when changing this, also change #banner and #iconbar */
background: #F3F6F2;
color: #000;
z-index: 2;
overflow-y: auto;
padding-top: 0.5em;
}
.boxcontent table {
margin: 0;
padding: 0;
}
#content table .box {
margin: 0;
width: 100%;
text-align: left;
}
.service, .who_is_online {
text-align: center;
width: 100%;
}
.service table {
margin: 0 auto 0 auto;
width: 100%;
text-align: left;
}
.instructions {
text-align: center;
}
.moreprompt {
margin: 0 1em;
text-align: center;
font-size: small;
background-color: #4d555c;
color: #ddd;
border: 2px solid #4d555c; /*in order to make the hover effect pop out nice */
/*border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px; */
}
.moreprompt_link {
color: #ddd;
font-weight: bold;
}
.moreprompt_link:hover {
background-color: #ddd;
color: #4d555c;
border: 0px solid #5c646b;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
}
/* a > div.moreprompt {
border: none;
border-radius: 0; } */
|