From eedcac52f3758e0a4e7575b3fcfade308abb90f6 Mon Sep 17 00:00:00 2001 From: FunnyDoggs <150701373+FunnyDoggs@users.noreply.github.com> Date: Mon, 26 Feb 2024 15:50:17 -0500 Subject: [PATCH] Update index.html --- index.html | 53 +++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 45 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index 6e8940a..cc14df2 100644 --- a/index.html +++ b/index.html @@ -40,24 +40,61 @@ /* Resizable handle */ .resizable-handle { - width: 10px; - height: 10px; + width: 20px; + height: 20px; background-color: #008080; position: absolute; bottom: 0; right: 0; cursor: se-resize; } + + /* Old styles for Windows 1 appearance */ + .window { + width: 300px; + height: 200px; + border: 2px solid #000; + background-color: #fff; + border-radius: 0; + } + + .resizable-handle { + width: 10px; + height: 10px; + } + + /* Windows 10-like styles */ + .window.windows-10 { + box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); + border-radius: 5px; + background-color: #f0f0f0; + } + + .title-bar.windows-10 { + background-color: #0078d4; + color: white; + border-top-left-radius: 5px; + border-top-right-radius: 5px; + } + + .close-button.windows-10 { + color: white; + } + + .resizable-handle.windows-10 { + background-color: #0078d4; + }