diff options
author | vgatextmode <[email protected]> | 2024-10-19 23:03:31 +0300 |
---|---|---|
committer | vgatextmode <[email protected]> | 2024-10-19 23:03:31 +0300 |
commit | cb1fd1412822a01069c0d7b5d6c62f545a328809 (patch) | |
tree | 02ff2b40387a96c2c03b3b6eaea4f856f7007f7e /style.css |
[init] initial commit
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..cff8753 --- /dev/null +++ b/style.css @@ -0,0 +1,41 @@ + +body { + background-color: black; + font-size: 20; +} + +.mainflex { + + display: flex; + justify-content: center; + height: 90vh; + align-items: center; + flex-direction: column; + gap: 0.5%; + +} + +.mainflex img { + + margin-left: 110px; + +} + +a { + color: violet; + text-decoration: none; + text-shadow: indigo 2px 5px; +} + +a:hover { + color: slateblue; + text-decoration: none; + text-shadow: navy 2px 5px; +} + +footer { + border-top: 2px dashed grey; + display: flex; + justify-content: center; + padding: 2%; +} |