From bb1ef7220f27cf2dfff7d22fffdfe0d983adf63c Mon Sep 17 00:00:00 2001 From: Dekart Deploy Bot Date: Sun, 10 May 2026 23:20:48 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9B=D0=B0=D0=B3=D0=B5=D1=80=D1=8C:=20=D0=A1?= =?UTF-8?q?=D0=B5=D0=BA=D1=86=D0=B8=D1=8F=20=D0=BF=D1=80=D0=BE=D0=B3=D1=80?= =?UTF-8?q?=D0=B0=D0=BC=D0=BC=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wp-content/themes/dekart/assets/css/camp.css | 47 ++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/wp-content/themes/dekart/assets/css/camp.css b/wp-content/themes/dekart/assets/css/camp.css index 5d2016c..e23a852 100644 --- a/wp-content/themes/dekart/assets/css/camp.css +++ b/wp-content/themes/dekart/assets/css/camp.css @@ -939,6 +939,53 @@ p { } /* programs END */ + +/* modal */ +.modal-programs, +.modal-mentors { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + display: none; + align-items: center; + justify-content: center; + background-color: #000000ce; + z-index: 100; +} + +.modal-programs.open, +.modal-mentors.open { + display: flex; +} + +.modal-programs-wrapper { + position: relative; + display: flex; + gap: 30px; + border-radius: 30px; + background-color: #fff; + padding: 40px; + max-width: 90%; + max-height: 90%; +} + +.modal-programs__img { + min-width: 260px; + height: 260px; + border-radius: 30px; + overflow: hidden; +} + +.modal-programs__img img { + width: 100%; + height: 100%; + object-fit: contain; +} +.btn-close-modal { position: absolute; top: 16px; right: 16px; z-index: 10; width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .2s;}.btn-close-modal:hover { background: rgba(0,0,0,0.65);}.btn-close-modal svg { width: 18px; height: 18px;}.btn-close-modal svg g { stroke: #fff; fill: #fff;}.btn-close-mentors { position: absolute; bottom: 100%; left: 100%; border: none; background: none; cursor: pointer;} + +/* modal END */ /* bring-child */ .bring-child p { margin-bottom: 0;