From a43606b7ec8674beec4a98c99bb1f291766c091a Mon Sep 17 00:00:00 2001 From: valeriiovich Date: Mon, 17 Feb 2025 13:20:49 +0000 Subject: [PATCH] Upload files to "src" --- src/Main.html | 8 +++++--- src/style.css | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 3 deletions(-) create mode 100644 src/style.css diff --git a/src/Main.html b/src/Main.html index 9a115cd..b3c47d5 100644 --- a/src/Main.html +++ b/src/Main.html @@ -5,9 +5,11 @@ Main Page -
-

Hello World!

-

All hail Skynet!!

+
+

Entry 1

+

+ +

\ No newline at end of file diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..e5caced --- /dev/null +++ b/src/style.css @@ -0,0 +1,39 @@ +:root { + /* Colors */ + --main-blue: #29527a; /* Muted blue */ + --main-grey: #2e2e2e; /* Dark grey */ + --main-black: #101010; /* Jet black */ + --main-white: #ffffff; /* Pure white */ + + --link-color: #58a6ff; /* Soft blue for links */ + --link-hover: #36d399; /* Green accent on hover */ + --link-click: #ffdb4d; /* Yellow accent on click */ + + /* Typography */ + --font-family-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; + --font-size-base: 16px; + --font-size-small: 14px; + --line-height: 1.6; + + /* Spacing */ + --spacing-base: 1rem; + --spacing-large: 2rem; + --border-radius: 0.4rem; +} + +html, body { + margin: 0; + padding: 0; + font-family: var(--font-family-sans); + font-size: var(--font-size-base); + line-height: var(--line-height); + color: var(--main-black); + background-color: var(--main-white); + scroll-behavior: smooth; +} + +#Entry{ + margin: auto; + border: 1px blueviolet; + padding: 1px; +} \ No newline at end of file