From af8122d36bb590cb1099f83e26c6a900d4931ce1 Mon Sep 17 00:00:00 2001 From: esteghlal1402 <202157739+esteghlal1402@users.noreply.github.com> Date: Wed, 3 Sep 2025 07:16:57 +0330 Subject: [PATCH] Create style.css MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit style.css — طراحی ظاهری --- style.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..6971459 --- /dev/null +++ b/style.css @@ -0,0 +1,32 @@ +body { + font-family: Tahoma; + background: #f0f0f0; + padding: 20px; + direction: rtl; +} +h2 { + color: #333; +} +.layer { + background: #fff; + border: 1px dashed #aaa; + padding: 15px; + margin-bottom: 15px; + box-shadow: 0 0 5px rgba(0,0,0,0.1); +} +input[type="text"] { + width: 80%; + padding: 8px; + font-size: 16px; +} +button { + padding: 8px 16px; + font-size: 16px; + background-color: #0077cc; + color: white; + border: none; + cursor: pointer; +} +button:hover { + background-color: #005fa3; +}