From 7e0148b8e81009c8f07b083d98583ef86af2d502 Mon Sep 17 00:00:00 2001 From: andreiextr Date: Tue, 29 Aug 2023 16:38:14 +0300 Subject: [PATCH] color --- index.html | 8 -------- style.css | 10 +++++----- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/index.html b/index.html index 79e1c0d..5a28c67 100644 --- a/index.html +++ b/index.html @@ -11,14 +11,6 @@
Click on me
- -
- Click on me -
- -
- Click on me -
0 diff --git a/style.css b/style.css index 0ab8731..05a140e 100644 --- a/style.css +++ b/style.css @@ -30,7 +30,7 @@ body { padding-top: 16px; padding-bottom: 16px; margin: 16px; - background-color: #333333; + background-color: #100f0f; border-radius: 30em; font-size: 15px; text-transform: uppercase; @@ -39,20 +39,20 @@ body { border: none; cursor: pointer; overflow: hidden; - box-shadow: 4px 4px 10px #1b1b1b, -4px -4px 10px #424242; + box-shadow: 4px 4px 10px #000000, -4px -4px 10px #181818; transition: all 0.2s ease; } .but_text:hover { - background-color: #333333; + background-color: #100f0f; color: #ff6a00; cursor: pointer; } .but_text:active { transform: scale(0.99); - background-color: #333333; - box-shadow: inset 4px 4px 10px #1a1a1a, inset -4px -4px 10px #313131; + background-color: #100f0f; + box-shadow: inset 4px 4px 10px #000000, inset -4px -4px 10px #181818; cursor: pointer; }