﻿/* CSS support for Ancestor Links application code, for use with family trees as generated by the SVG Family-Tree Generator (SVG-FTG) */
/* Author:	A.C.Proctor	30-Dec-2020	*/

/* NB: These styles are dynamically applied and so we must enforce their precedence */

line.al-path {
    stroke: #7070ff !important;
    stroke-width: 4px !important;	/* This should be the same as nd_dims[ND_D_LINE_WID_ROOT] */
}

.al-person.f {				/* Highlighting Female person-box */
    stroke: red !important;
    stroke-width: 3.0 !important;
}

.al-person.m {				/* Highlighting Male person-box */
    stroke: blue !important;
    stroke-width: 3.0 !important;
}

.al-person.u, .al-person.x {		/* Highlighting Unknown/Other person-box */
    stroke: dimgray !important;
    stroke-width: 3.0 !important;
}