1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 18:45:01 +00:00
mon-entreprise/source/components/Aide.css
mama 0e8a832a48 🎨 Alignement de la conversation au milieu
L'aide est releguée en dessous de la question en cours
2017-10-01 18:19:08 +02:00

52 lines
785 B
CSS

#sim #helpWrapper {
max-width: 85%;
margin: 3em auto;
display: none;
}
#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;
}
#sim #help blockquote {
font-style: italic;
font-size: 90%;
border-left: 4px solid #eee;
margin-left: .6em;
padding-left: .6em;
}
#sim #helpWrapper.active {
display: block;
}
#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;
}