Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

Commit

Permalink
adjust strokes again
Browse files Browse the repository at this point in the history
  • Loading branch information
dga711 committed Oct 19, 2021
1 parent 450679d commit b0238a1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class Jet_PFD_AirspeedIndicator extends HTMLElement {
this.machPrefixdecimalSVG.setAttribute("font-family", "Roboto-Light");
this.machPrefixdecimalSVG.setAttribute("text-anchor", "end");
this.machPrefixdecimalSVG.setAttribute("stroke", "black");
this.machPrefixdecimalSVG.setAttribute("stroke-width", "0.6px");
this.machPrefixdecimalSVG.setAttribute("stroke-width", "0.85px");
this.machPrefixdecimalSVG.setAttribute("alignment-baseline", "top");
this.rootGroup.appendChild(this.machPrefixdecimalSVG);
this.machValueSVG = document.createElementNS(Avionics.SVG.NS, "text");
Expand All @@ -163,7 +163,7 @@ class Jet_PFD_AirspeedIndicator extends HTMLElement {
this.machValueSVG.setAttribute("y", (posY + 30).toString());
this.machValueSVG.setAttribute("fill", "var(--green)");
this.machValueSVG.setAttribute("stroke", "black");
this.machValueSVG.setAttribute("stroke-width", "0.6px");
this.machValueSVG.setAttribute("stroke-width", "0.85px");
this.machValueSVG.setAttribute("font-size", (this.fontSize * 1.2).toString());
this.machValueSVG.setAttribute("font-family", "Roboto-Light");
this.machValueSVG.setAttribute("text-anchor", "start");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class Jet_PFD_AltimeterIndicator extends HTMLElement {
this.pressureSVGLeftPart.setAttribute("y", (posY + 30).toString());
this.pressureSVGLeftPart.setAttribute("fill", "var(--cyan)");
this.pressureSVGLeftPart.setAttribute("stroke", "black");
this.pressureSVGLeftPart.setAttribute("stroke-width", "0.6px");
this.pressureSVGLeftPart.setAttribute("stroke-width", "0.85px");
this.pressureSVGLeftPart.setAttribute("font-size", (this.fontSize * 1.2).toString());
this.pressureSVGLeftPart.setAttribute("font-family", "Roboto-Light");
this.pressureSVGLeftPart.setAttribute("text-anchor", "center");
Expand All @@ -197,7 +197,7 @@ class Jet_PFD_AltimeterIndicator extends HTMLElement {
this.pressureSVGCenterPart.setAttribute("y", (posY + 30).toString());
this.pressureSVGCenterPart.setAttribute("fill", "var(--cyan)");
this.pressureSVGCenterPart.setAttribute("stroke", "black");
this.pressureSVGCenterPart.setAttribute("stroke-width", "0.6px");
this.pressureSVGCenterPart.setAttribute("stroke-width", "0.85px");
this.pressureSVGCenterPart.setAttribute("font-size", (this.fontSize * 2.3).toString());
this.pressureSVGCenterPart.setAttribute("font-family", "Roboto-Light");
this.pressureSVGCenterPart.setAttribute("text-anchor", "center");
Expand All @@ -211,7 +211,7 @@ class Jet_PFD_AltimeterIndicator extends HTMLElement {
this.pressureSVGRightPart.setAttribute("y", (posY + 30).toString());
this.pressureSVGRightPart.setAttribute("fill", "var(--cyan)");
this.pressureSVGRightPart.setAttribute("stroke", "black");
this.pressureSVGRightPart.setAttribute("stroke-width", "0.6px");
this.pressureSVGRightPart.setAttribute("stroke-width", "0.85px");
this.pressureSVGRightPart.setAttribute("font-size", (this.fontSize * 1.2).toString());
this.pressureSVGRightPart.setAttribute("font-family", "Roboto-Light");
this.pressureSVGRightPart.setAttribute("text-anchor", "center");
Expand All @@ -225,7 +225,7 @@ class Jet_PFD_AltimeterIndicator extends HTMLElement {
this.pressureSVGUnits.setAttribute("y", (posY + 30).toString());
this.pressureSVGUnits.setAttribute("fill", "var(--cyan)");
this.pressureSVGUnits.setAttribute("stroke", "black");
this.pressureSVGUnits.setAttribute("stroke-width", "0.6px");
this.pressureSVGUnits.setAttribute("stroke-width", "0.8px");
this.pressureSVGUnits.setAttribute("font-size", (this.fontSize * 1.0).toString());
this.pressureSVGUnits.setAttribute("font-family", "Roboto-Light");
this.pressureSVGUnits.setAttribute("text-anchor", "left");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ class Jet_PFD_AttitudeIndicator extends HTMLElement {
this.radioAltitude.setAttribute("font-family", "Roboto-Bold");
this.radioAltitude.setAttribute("fill", "var(--green)");
this.radioAltitude.setAttribute("stroke", "black");
this.radioAltitude.setAttribute("stroke-width", "0.6px");
this.radioAltitude.setAttribute("stroke-width", "0.8px");
this.radioAltitudeGroup.appendChild(this.radioAltitude);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ cj4-pfd-element #Mainframe #PFD #InstrumentsContainer #VnavAlt {
font-size: 26px;
color: var(--magenta);
font: "Robot-Bold";
-webkit-text-stroke: 0.6px black;
-webkit-text-stroke: 0.85px black;
text-align: center;
top: 4.6%;
left: 85.2%;
Expand Down

0 comments on commit b0238a1

Please sign in to comment.