From de1cfb73e8d59d234a89a9c980c4b880e74ca36c Mon Sep 17 00:00:00 2001 From: Michi Date: Tue, 10 May 2022 07:51:54 +0200 Subject: [PATCH] Create style.css --- style.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..01d413e --- /dev/null +++ b/style.css @@ -0,0 +1,18 @@ +html{scroll-behavior: smooth;} + +body{ + margin: 0; + padding: 0; + color: var(--color); + background: var(--background); + text-align: left; + font-family: "open sans", sans-serif; + scroll-behavior: smooth; + --maincolor: #e67e22; + --secondcolor: #d35400; + --background: #eaf2f8; + --color: #000; + } + + ::selection {background: var(--maincolor); color: #ffffff; border-radius: 12px;} + ::-moz-selection {background: var(--maincolor); color: #ffffff; border-radius: 12px;}