DmitrMakeev commited on
Commit
cbd058b
·
verified ·
1 Parent(s): cf658a2

Update settings.html

Browse files
Files changed (1) hide show
  1. settings.html +51 -1
settings.html CHANGED
@@ -7,7 +7,7 @@
7
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
8
  <script src="https://unpkg.com/@vkontakte/vk-bridge/dist/browser.min.js"></script>
9
  <script type="text/javascript" src="https://vk.com/js/api/openapi.js?169"></script>
10
- <style>
11
  body {
12
  display: flex;
13
  flex-direction: column;
@@ -94,6 +94,56 @@
94
  }
95
  </style>
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  <style>
98
  /* Добавленные стили для центрирования ссылки */
99
  .form-group {
 
7
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
8
  <script src="https://unpkg.com/@vkontakte/vk-bridge/dist/browser.min.js"></script>
9
  <script type="text/javascript" src="https://vk.com/js/api/openapi.js?169"></script>
10
+ <style>
11
  body {
12
  display: flex;
13
  flex-direction: column;
 
94
  }
95
  </style>
96
 
97
+ <style>
98
+ .modal {
99
+ display: none; /* По умолчанию скрыто */
100
+ position: fixed;
101
+ z-index: 1000;
102
+ left: 0;
103
+ top: 0;
104
+ width: 100%;
105
+ height: 100%;
106
+ background-color: rgba(0,0,0,0.5); /* Полупрозрачный фон */
107
+ }
108
+
109
+ .modal-content {
110
+ background-color: #fff; /* Белый фон */
111
+ color: black; /* Черный текст */
112
+ border-radius: 10px;
113
+ padding: 20px;
114
+ position: absolute;
115
+ top: 50%;
116
+ left: 50%;
117
+ transform: translate(-50%, -50%);
118
+ width: 100%; /* Ширина 100% */
119
+ max-width: 80%;
120
+ max-height: 80%;
121
+ overflow-y: auto;
122
+ box-shadow: 0 0 20px rgba(0,0,0,0.2);
123
+ }
124
+
125
+ .close {
126
+ color: orange;
127
+ float: right;
128
+ font-size: 30px;
129
+ font-weight: bold;
130
+ cursor: pointer;
131
+ }
132
+
133
+ .close:hover,
134
+ .close:focus {
135
+ color: darkorange;
136
+ text-decoration: none;
137
+ cursor: pointer;
138
+ }
139
+
140
+ .modal-content iframe {
141
+ width: 100%;
142
+ height: 100%;
143
+ border: none;
144
+ }
145
+ </style>
146
+
147
  <style>
148
  /* Добавленные стили для центрирования ссылки */
149
  .form-group {