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