diff options
| author | roy <[email protected]> | 2026-06-08 04:10:25 +0300 |
|---|---|---|
| committer | roy <[email protected]> | 2026-06-08 04:10:25 +0300 |
| commit | c17d54a637fadef229723b90c4b09de233e77967 (patch) | |
| tree | 4dc5a2ba6dbbc44e78a8a6b49f65ac9dec0d64a7 /globalstyle.css | |
| parent | de4d59813b6ec55515fa76e303643011898fd234 (diff) | |
Diffstat (limited to 'globalstyle.css')
| -rw-r--r-- | globalstyle.css | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/globalstyle.css b/globalstyle.css new file mode 100644 index 0000000..2ce4d10 --- /dev/null +++ b/globalstyle.css @@ -0,0 +1,36 @@ +:root { + --main: #8556db; + --sub: #b892ff; + --bg: #000000; +} + +html { + background-color: var(--bg); + color: white; + font-size: 30px; +} + +header.navbar { + border-bottom: 3px solid var(--main); + font-size: 30px; + display: flex; + align-items: center; + justify-content: space-around; + width: 66%; + margin-left: auto; + margin-right: auto; +} + +header.navbar a { + color: var(--main); + text-decoration: none; +} + +header.navbar a:visited { + color: var(--main); +} + +header.navbar a:hover { + color: var(--sub); + text-decoration: none; +} |
