diff --git a/css/default.css b/css/default.css index 845c111..2f2607e 100644 --- a/css/default.css +++ b/css/default.css @@ -1,9 +1,29 @@ +:root { + --yellow-color: yellow; +} + body {background-color: black; background-image: url('/html/img/galaxy-animated.gif'); font-family: "Comic Sans MS", "Chalkboard SE-Regular", "Chalkboard", "Comic Neue", Tahoma, sans-serif; font-size: 15pt; color: snow;} + .yellowFont { + color: var(--yellow-color); + } + + .yellowFont:hover { + color: var(--yellow-color); + } + + .yellowFont:active { + color: var(--yellow-color); + } + + .yellowFont:visited { + color: var(--yellow-color); + } + pre { font-family: monospace, "Courier New", Courier; margin: 0; @@ -46,22 +66,6 @@ body {background-color: black; color: hotpink; } - #gitHubProfilelink { - color: yellow; /* Default color */ - } - - #gitHubProfilelink:hover { - color: yellow /* Color when hovered */ - } - - #gitHubProfilelink:active { - color: yellow /* Color when clicked */ - } - - #gitHubProfilelink:visited { - color: yellow; /* Color for visited links */ - } - #video-embedded { width: 480px; height: 270px; diff --git a/index.htm b/index.htm index 9821d07..7574670 100644 --- a/index.htm +++ b/index.htm @@ -58,9 +58,9 @@ ------------------------------------------------------------------------
- Ready to Test (QA) GitHub Profile 👤 + Ready to Test (QA) GitHub Profile 👤
- https://github.com/readytotest + https://github.com/readytotest
Down to repo list ⇩
@@ -120,7 +120,7 @@
Helper Function 1: verifyTextAndLink.ts
- + Verifies an element's text content, visibility, and optionally its `href` attribute.
The visibility check defaults to true; pass false if you want to verify it's hidden.