34 lines
745 B
SCSS
34 lines
745 B
SCSS
$zoombgcolor: transparentize(mui-color('green', 'A400'),0.2);
|
|
$lookingglasscolor: transparentize(mui-color('green', 'A400'),0.2);
|
|
|
|
/*zoom that mother*/
|
|
|
|
#zoomthatmother i {
|
|
font-size: 7em;
|
|
color: $lookingglasscolor;
|
|
/*text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;*/
|
|
}
|
|
|
|
#zoomthatmother span {
|
|
margin-left:-526px;
|
|
}
|
|
|
|
#zoomthatmother.future {
|
|
opacity:0;
|
|
}
|
|
|
|
#zoomthatmother .textblock {
|
|
position: absolute;
|
|
text-align: left;
|
|
top: 48px;
|
|
font-size: larger;
|
|
font-family: 'Montserrat';
|
|
width: 500px;
|
|
left: 303px;
|
|
box-shadow: 5px 5px 15px black;
|
|
padding-left: 70px;
|
|
background-color: $zoombgcolor;
|
|
padding-top: 20px;
|
|
padding-bottom: 20px;
|
|
border-radius: 12px;
|
|
} |