From 599ade9f708823241f61141422b31e4b0c07f82f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Ka=C5=88ka?= <124378142+LukasKanka@users.noreply.github.com> Date: Thu, 28 Dec 2023 13:59:20 +0100 Subject: [PATCH] color var --- articles/playwright-dot-net.html | 68 ++++++++++++++++++++++++++++++++ automatizovana-testovani.html | 1 + style.css | 15 ++++--- 3 files changed, 78 insertions(+), 6 deletions(-) create mode 100644 articles/playwright-dot-net.html diff --git a/articles/playwright-dot-net.html b/articles/playwright-dot-net.html new file mode 100644 index 0000000..eb965bc --- /dev/null +++ b/articles/playwright-dot-net.html @@ -0,0 +1,68 @@ + + + + + + + + + + + + Testing Docs - Co je automatizované testování + + + +

Testing Docs CZ

+

Dokumentace pro všechny testery

+
+ +
+ +
+ + +
+

Text

+

Text

+
+
+ + + + + +
Nejdůležitější články:
+
  • Co je automatizované + testování +
  • +
  • Otázky a odpovědí k + Playwright
  • +
    +
    +
    + + + + + \ No newline at end of file diff --git a/automatizovana-testovani.html b/automatizovana-testovani.html index ec15a55..e68ad4f 100644 --- a/automatizovana-testovani.html +++ b/automatizovana-testovani.html @@ -55,6 +55,7 @@
  • Otázky a odpovědi k Playwright
  • +
  • Playwright DotNet
  • diff --git a/style.css b/style.css index 953b413..87ac539 100644 --- a/style.css +++ b/style.css @@ -1,10 +1,13 @@ :root { --special_black: rgb(11, 2, 2); + --special_white: white; + --special_grey: grey; + --special_black_original: black; } body { background-color: var(--special_black); - color: white; + color: var(--special_white); } .menu-item { @@ -51,21 +54,21 @@ h2 { margin: 0px 0px 0px 30px; } .button { - color: white; + color: var(--special_white); } td, th { - border: 1px solid white; + border: 1px solid var(--special_white); padding: 10px; } .code-box { - border: 1px solid white; + border: 1px solid var(--special_white); padding: 10px; - background-color: gray; + background-color: var(--special_grey); font-family: monospace; - color: black; + color: var(--special_black_original); font-weight: bold; border-radius: 8px; }