<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    height: 100%;
}

body {
    position: absolute;
    height: 100%;
    margin: 0;
    z-index: 0;
    border: none;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    font-family: "Verdana";
    /* custom NURDS values */
    --pivot-stripe-height: 14;
    --skater-radius: 16;
    --jersey-radius: 12;
    --preferred-team-A-colour: hotpink;
    --preferred-team-B-colour: orange;
}

svg {
    background: #ffff99;
    display: block;
    width: 100%;
    height: 100%;
}

.trackBoundary {
    stroke: mediumorchid;
    fill: none;
    fill-opacity: 0;
    stroke-width: 8;
    fill-rule: evenodd;
}

.trackBackground {
    stroke: none;
    fill: cyan;
    fill-opacity: 0.2;
    stroke-width: 0;
    fill-rule: evenodd;
}

path.virtualDistanceLine {
    stroke: #00ff00;
    fill: none;
    stroke-width: 1.4;
    stroke-dasharray: 5,3
}

.blockerNumber {
    user-select: none;
    font-family: "Verdana";
    font-size: 14px;
    font-weight: bold;
    dominant-baseline: central;
    text-anchor: middle;
    fill: white;
}

.invisible {
    /* font-size: 0px; */
    display: none;
}

.mark {
    stroke: mediumorchid;
    fill: none;
    stroke-width: 1.5;
}

.engagementZone {
    fill: #00ff00;
    stroke: none;
    fill-opacity: 0.4;
}

.skater {
    stroke-width: 6;
}

.player {
    fill: white;
}    

.pivot,.jammer,.blocker,.zebra {
    stroke-width: 0;
}

.teamA {
    stroke: #ffbb00; /* colour for team A */
    fill: #ffbb00; /* colour for team A */
}

.teamB {
    stroke: #bb00bb; /* colour for team B */
    fill: #bb00bb; /* colour for team B */
}

.OOB {
    stroke: red;
}

.pack {
    stroke: limegreen;
}

.OOP {
    stroke: black;
}

.down {
    stroke: darkred;
    stroke-linecap: round;
    stroke-dasharray: 7;
}

.movable {
    cursor: move;
}

.nopack {
    stroke: lightsteelblue;
}

.zebra {
    stroke: black;
}

.JRStar {
    stroke: black;
    stroke-width: .2;
}

.recButton {
    stroke: red;
    fill: red;
}

.selected {
    /* fill: grey; */
    fill-opacity: .4;
}

.selection {
    stroke: grey;
    fill-opacity: 0.2;
    stroke-width: 1;
}

.HUD {
    position: absolute;
    padding: 10px 10px 10px 10px;
    margin: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: rgba(0, 0, 0, 0.7);
    border-style: outset;
    color: white;
    visibility: hidden;
    z-index: 1;
    /* max-height: 100%; */
    /* max-height: 280px; */
    cursor: default;
}

.HUDcontent {
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
}

.alignRight {
    text-align: right;
    align: right;
}

.leftBound {
    left: 0;
}

.rightBound {
    right: 0;
}

.bottomBound {
    bottom: 0;
}

.startHUD {
    position: absolute;
    padding: 10px 10px 10px 10px;
    margin: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    z-index: 1;
}

.noSelection {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
</pre></body></html>