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
|
.track {
z-index: 0;
padding-top: 10;
padding-bottom: 10;
}
.centered_block {
margin-left: auto;
margin-right: auto;
}
.scale {
text-align: center;
margin-left: auto;
margin-right: auto;
}
IMG.trackimg {
margin-top: -10px;
text-align: center;
}
.titlebar_pinned {
background:#FFD39B;
display: inline-block;
text-align:left;
width:100%;
cursor: move;
font-size: 9pt;
font-weight: bold;
}
.titlebar { background-color: #FFD39B;
cursor: move;
z-index: 10;
opacity: 1.0;
font-size: 9pt;
font-weight: bold;
}
.titlebar_inactive { background-color: #E0E0E0;
cursor: move;
z-index: 10;
opacity: 1.0;
font-size: 9pt;
font-weight: bold;
}
.titlebar:hover {
background:lightsteelblue;
}
.subtrack {
z-index:11;
position:absolute;
font-weight:bold;
font-size: 9pt;
}
.pin_button {
float:right;
cursor:pointer;
}
|