|
|
|
@ -671,5 +671,82 @@ div#contenedor_landingpage {
|
|
|
|
|
padding-right: 0em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*-------------
|
|
|
|
|
Help-tip Style
|
|
|
|
|
---------------*/
|
|
|
|
|
.help-tip {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -.2em; right: 1.1em;
|
|
|
|
|
//border: 1px solid red;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.help-tip::before { /*question sign*/
|
|
|
|
|
content: "?";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0; right: 0;
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
padding: .1em .6em;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
cursor: help;
|
|
|
|
|
background: #1565c0;
|
|
|
|
|
color: #f9f9f9;
|
|
|
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|