Start on tour infrastructure. Note that this code works but is NOT STYLED and has a FAKE TEMP TOUR in it
This commit is contained in:
parent
37507b7d7d
commit
a049fc57c6
10 changed files with 411 additions and 130 deletions
|
@ -2701,4 +2701,36 @@ p.editable:hover i {
|
|||
|
||||
.contact-options {
|
||||
margin-top: 60px;
|
||||
}
|
||||
|
||||
/*********************************************/
|
||||
|
||||
.angular-tour-overlay-element {
|
||||
display: block;
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
left: 20px;
|
||||
right: 20px;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
color: white;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
z-index: 9999999;
|
||||
|
||||
opacity: 0;
|
||||
|
||||
transition: opacity 750ms ease-in-out;
|
||||
-webkit-transition: opacity 750ms ease-in-out;
|
||||
}
|
||||
|
||||
.angular-tour-overlay-element.touring {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.angular-tour-overlay-element.nottouring {
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
left: -10000px;
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
}
|
Reference in a new issue