mon-entreprise/source/components/Aide.css

74 lines
1.1 KiB
CSS

#sim #helpWrapper {
width: 35%;
margin: 3em;
visibility: hidden;
}
#sim #help {
box-shadow: -1px 1px 15px 1px #eee;
border: 1px solid #aaa;
border-radius: .3em;
padding: .6em 1em;
color: #444;
background: white;
position: relative;
}
@media (max-width: 1280px) {
#sim #helpWrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.86);
z-index: 1;
}
#sim #help {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 30em;
max-width: 90%;
margin: 0;
}
}
#sim #help blockquote {
font-style: italic;
font-size: 90%;
border-left: 4px solid #eee;
margin-left: .6em;
padding-left: .6em;
}
#sim #helpWrapper.active {
visibility: visible;
}
#sim #help i.fa-info-circle {
margin-right: .3em;
text-align: center;
width: 100%;
position: absolute;
top: 0;
font-size: 1000%;
color: black;
opacity: .03
}
#sim #help i.fa-times-circle {
color: #4a89dc;
font-size: 120%;
position: absolute;
top: .6em;
right: .6em;
cursor: pointer;
}
#sim #help h3 {
margin: .3em 0;
}