From 3764264df6398b6c4a2e6a7cb4e8e546426f2aaa Mon Sep 17 00:00:00 2001 From: amos Date: Fri, 27 Mar 2026 07:33:41 +0300 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=B2=20=C2=AB?= =?UTF-8?q?js/arcticmodal/themes=C2=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/arcticmodal/themes/dark.css | 12 ++++++++++++ js/arcticmodal/themes/simple.css | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 js/arcticmodal/themes/dark.css create mode 100644 js/arcticmodal/themes/simple.css diff --git a/js/arcticmodal/themes/dark.css b/js/arcticmodal/themes/dark.css new file mode 100644 index 0000000..c5dd91e --- /dev/null +++ b/js/arcticmodal/themes/dark.css @@ -0,0 +1,12 @@ +.box-modal { + position: relative; + width: 500px; + padding: 16px; + background: #3c3f41; + color: #bbb; + font: 14px/18px Arial, "Helvetica CY", "Nimbus Sans L", sans-serif; + box-shadow: 0 0 0 6px rgba(153, 153, 153, .3); + border-radius: 6px; +} +.box-modal_close { position: absolute; right: 10px; top: 6px; font-size: 11px; line-height: 15px; color: #999; cursor: pointer; } +.box-modal_close:hover { color: #6897bb; } \ No newline at end of file diff --git a/js/arcticmodal/themes/simple.css b/js/arcticmodal/themes/simple.css new file mode 100644 index 0000000..0800d56 --- /dev/null +++ b/js/arcticmodal/themes/simple.css @@ -0,0 +1,12 @@ +.box-modal { + position: relative; + width: 500px; + padding: 16px; + background: #fff; + color: #3c3c3c; + font: 14px/18px Arial, "Helvetica CY", "Nimbus Sans L", sans-serif; + box-shadow: 0 0 0 6px rgba(153, 153, 153, .3); + border-radius: 6px; +} +.box-modal_close { position: absolute; right: 10px; top: 6px; font-size: 11px; line-height: 15px; color: #999; cursor: pointer; } +.box-modal_close:hover { color: #666; } \ No newline at end of file