Spaces:
Sleeping
Sleeping
Update static/popups.css
Browse files- static/popups.css +35 -9
static/popups.css
CHANGED
|
@@ -58,7 +58,7 @@
|
|
| 58 |
|
| 59 |
/* Modal Content */
|
| 60 |
.modal-content, .popup ,#userguidetext{
|
| 61 |
-
position:
|
| 62 |
background-color: #fff;
|
| 63 |
margin: auto;
|
| 64 |
padding: 0;
|
|
@@ -68,13 +68,39 @@
|
|
| 68 |
animation: animatetop 0.4s;
|
| 69 |
border-radius: 0.3rem;
|
| 70 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
#userguideHome{
|
|
|
|
| 72 |
margin-top:10px;
|
| 73 |
font-size: 1.7em;
|
| 74 |
margin-left:5px;
|
| 75 |
}
|
| 76 |
#userguideTableMaya{
|
| 77 |
float:right;
|
|
|
|
| 78 |
margin-top:8px;
|
| 79 |
margin-right:5px;
|
| 80 |
font-size: 1.25em;
|
|
@@ -152,7 +178,7 @@ color:#302f2f;
|
|
| 152 |
.UserGuidebar1, .UserGuidebar2, .UserGuidebar3 {
|
| 153 |
width: 30px;
|
| 154 |
height: 5px;
|
| 155 |
-
background-color: #
|
| 156 |
margin: 5px 0;
|
| 157 |
transition: 0.4s;
|
| 158 |
margin-left: 5px;
|
|
@@ -184,7 +210,7 @@ color:#302f2f;
|
|
| 184 |
}
|
| 185 |
|
| 186 |
#UserGuidemenuOptions li:hover{
|
| 187 |
-
color: #
|
| 188 |
cursor:pointer;
|
| 189 |
|
| 190 |
}
|
|
@@ -209,16 +235,17 @@ overflow-y:auto
|
|
| 209 |
|
| 210 |
#UserguideRibbon{
|
| 211 |
position: fixed;
|
| 212 |
-
background-color: #
|
| 213 |
width:97%;
|
| 214 |
}
|
| 215 |
|
| 216 |
#UserGuideHeader{
|
| 217 |
|
| 218 |
font-size: 18px;
|
|
|
|
| 219 |
|
| 220 |
font-family: "acumin-pro", sans-serif;
|
| 221 |
-
margin-top:
|
| 222 |
margin-left:35px;
|
| 223 |
position:absolute;
|
| 224 |
}
|
|
@@ -255,15 +282,16 @@ overflow-y:auto
|
|
| 255 |
}
|
| 256 |
/* Modal Header */
|
| 257 |
.modal-header {
|
| 258 |
-
padding: 2px
|
| 259 |
background-color: #ffffff;
|
| 260 |
color: #333;
|
| 261 |
border-bottom: 1px solid #e9ecef;
|
| 262 |
border-top-left-radius: 0.3rem;
|
| 263 |
border-top-right-radius: 0.3rem;
|
| 264 |
-
|
| 265 |
cursor: move;
|
| 266 |
cursor: grab;
|
|
|
|
|
|
|
| 267 |
&:active {
|
| 268 |
cursor: grabbing;
|
| 269 |
}
|
|
@@ -351,9 +379,7 @@ overflow-y:auto
|
|
| 351 |
text-align: right;
|
| 352 |
float: right;
|
| 353 |
margin-top: -14px;
|
| 354 |
-
margin-bottom: 50px;
|
| 355 |
margin-right: 27px;
|
| 356 |
-
|
| 357 |
}
|
| 358 |
.dialog-btn#confirm{
|
| 359 |
background-color:#098815;
|
|
|
|
| 58 |
|
| 59 |
/* Modal Content */
|
| 60 |
.modal-content, .popup ,#userguidetext{
|
| 61 |
+
position: fixed;
|
| 62 |
background-color: #fff;
|
| 63 |
margin: auto;
|
| 64 |
padding: 0;
|
|
|
|
| 68 |
animation: animatetop 0.4s;
|
| 69 |
border-radius: 0.3rem;
|
| 70 |
}
|
| 71 |
+
.modal-content {
|
| 72 |
+
-webkit-animation-name: zoom;
|
| 73 |
+
-webkit-animation-duration: 0.6s;
|
| 74 |
+
animation-name: zoom;
|
| 75 |
+
animation-duration: 0.6s;
|
| 76 |
+
}
|
| 77 |
+
|
| 78 |
+
/* 100% Image Width on Smaller Screens */
|
| 79 |
+
@media only screen and (max-width: 700px){
|
| 80 |
+
.modal-content {
|
| 81 |
+
width: 100%;
|
| 82 |
+
}
|
| 83 |
+
}
|
| 84 |
+
|
| 85 |
+
.modal-content {
|
| 86 |
+
margin: auto;
|
| 87 |
+
display: block;
|
| 88 |
+
width: 490px;
|
| 89 |
+
margin-left:400px;
|
| 90 |
+
margin-top:50px;
|
| 91 |
+
/* max-width: 560px; */
|
| 92 |
+
overflow-x: visible;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
#userguideHome{
|
| 96 |
+
color:white;
|
| 97 |
margin-top:10px;
|
| 98 |
font-size: 1.7em;
|
| 99 |
margin-left:5px;
|
| 100 |
}
|
| 101 |
#userguideTableMaya{
|
| 102 |
float:right;
|
| 103 |
+
color:white;
|
| 104 |
margin-top:8px;
|
| 105 |
margin-right:5px;
|
| 106 |
font-size: 1.25em;
|
|
|
|
| 178 |
.UserGuidebar1, .UserGuidebar2, .UserGuidebar3 {
|
| 179 |
width: 30px;
|
| 180 |
height: 5px;
|
| 181 |
+
background-color: #ffffff;
|
| 182 |
margin: 5px 0;
|
| 183 |
transition: 0.4s;
|
| 184 |
margin-left: 5px;
|
|
|
|
| 210 |
}
|
| 211 |
|
| 212 |
#UserGuidemenuOptions li:hover{
|
| 213 |
+
color: #100f0f;
|
| 214 |
cursor:pointer;
|
| 215 |
|
| 216 |
}
|
|
|
|
| 235 |
|
| 236 |
#UserguideRibbon{
|
| 237 |
position: fixed;
|
| 238 |
+
background-color: #ee6464;
|
| 239 |
width:97%;
|
| 240 |
}
|
| 241 |
|
| 242 |
#UserGuideHeader{
|
| 243 |
|
| 244 |
font-size: 18px;
|
| 245 |
+
color:white;
|
| 246 |
|
| 247 |
font-family: "acumin-pro", sans-serif;
|
| 248 |
+
margin-top:4px;
|
| 249 |
margin-left:35px;
|
| 250 |
position:absolute;
|
| 251 |
}
|
|
|
|
| 282 |
}
|
| 283 |
/* Modal Header */
|
| 284 |
.modal-header {
|
| 285 |
+
padding: 2px 15px;
|
| 286 |
background-color: #ffffff;
|
| 287 |
color: #333;
|
| 288 |
border-bottom: 1px solid #e9ecef;
|
| 289 |
border-top-left-radius: 0.3rem;
|
| 290 |
border-top-right-radius: 0.3rem;
|
|
|
|
| 291 |
cursor: move;
|
| 292 |
cursor: grab;
|
| 293 |
+
|
| 294 |
+
|
| 295 |
&:active {
|
| 296 |
cursor: grabbing;
|
| 297 |
}
|
|
|
|
| 379 |
text-align: right;
|
| 380 |
float: right;
|
| 381 |
margin-top: -14px;
|
|
|
|
| 382 |
margin-right: 27px;
|
|
|
|
| 383 |
}
|
| 384 |
.dialog-btn#confirm{
|
| 385 |
background-color:#098815;
|