diff options
author | Jannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de> | 2022-05-03 18:22:43 +0200 |
---|---|---|
committer | Jannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de> | 2022-05-03 18:22:43 +0200 |
commit | a6e6f8be88a93699765f25aee0e6109a3eb0b307 (patch) | |
tree | c4ba131bdf3af616ff70072876d384924bf408ce /public/style.css | |
parent | ebe37a68d39dbc1cc4f6af1c05301d5a5fc29c13 (diff) |
reworked templates based on purecss
Diffstat (limited to 'public/style.css')
-rw-r--r-- | public/style.css | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/public/style.css b/public/style.css index 23a7cbf..8e771b0 100644 --- a/public/style.css +++ b/public/style.css @@ -1,14 +1,10 @@ :root { - --color-font: #000000; - --color-background: #DDDDDD; + --color-background: #ddd; + --color-table-row: #eee; + --color-head: #026; --color-table-em: lightblue; - --color-table-em2: #D3DCE3; - --color-table-row: #EEEEEE; - --color-link: blue; - --color-link-visited: purple; - --color-link-hover: red; + --color-table-em2: #d3dce3; --color-warning: orange; - --color-head: #002266; } /* GENERAL */ @@ -19,15 +15,15 @@ body { a:link { text-decoration: none; - color: var(--color-link); + color: blue; } a:visited { text-decoration: none; - color: var(--color-link-visited); + color: purple; } a:hover { text-decoration: underline; - color: var(--color-link-hover); + color: red; } footer { |