From aaab05649f7542dc6d0b59b5fede24ec2f503a57 Mon Sep 17 00:00:00 2001 From: Max Charrier Date: Sat, 19 Apr 2025 13:08:19 +0200 Subject: [PATCH] Add custom own file stylesheet Lately, I will implement modern CSS flexbox/grid instead of using absolute position. Signed-off-by: Max Charrier --- en.html | 9 +-------- index.html | 9 +-------- stylesheet.css | 16 ++++++++++++++++ 3 files changed, 18 insertions(+), 16 deletions(-) create mode 100644 stylesheet.css diff --git a/en.html b/en.html index fbed3c4..13665c5 100644 --- a/en.html +++ b/en.html @@ -9,16 +9,9 @@ + -

Max

diff --git a/index.html b/index.html index 2aab602..e0909aa 100644 --- a/index.html +++ b/index.html @@ -9,16 +9,9 @@ + -

Max

diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..9170b68 --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,16 @@ +body { + background-color: #4e3246; + color: #9b8816; + font-family: 'comic_monobold', ui-monospace, monospace; + font-size: 1.4rem; +} +h1 { + font-size: 4rem; +} +button { + position: absolute; + top: 20px; + right: 40px; + font-family: 'comic_monobold', ui-monospace, monospace; + font-size: 1.2rem; +} -- 2.39.5