From 816f8bbaff99c296c21d82bb19225f047c6392c2 Mon Sep 17 00:00:00 2001 From: Ilia Miheev Date: Thu, 30 Jan 2025 20:45:29 +0300 Subject: [PATCH] Update 2.0 --- style.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 5ea2468..2424bc6 100644 --- a/style.css +++ b/style.css @@ -1,3 +1,8 @@ +::selection { + background-color: orangered; + color: white; +} + body { font-family: Arial, sans-serif; margin: 20px; @@ -10,7 +15,8 @@ h1 { color: orangered; } -textarea, button { +textarea, +button { padding: 10px; margin: 10px; border: 1px solid #333; @@ -33,6 +39,10 @@ button { cursor: pointer; } +button::selection { + background-color: rgb(172, 46, 0); +} + button:active { background-color: rgb(135, 36, 0); }