Skip to content
Snippets Groups Projects
Verified Commit 08838c1b authored by Romain Deville's avatar Romain Deville
Browse files

:lipstick: Update user_config/docs/theme/css/extra.css

Add Popup and link css style
parent 39da9316
No related branches found
No related tags found
No related merge requests found
Pipeline #9378 passed with stages
in 11 minutes and 57 seconds
.image-center { .image-center {
display : block; display : block;
margin : auto; margin : auto;
} }
\ No newline at end of file
.Popup {
position: relative;
display: none;
opacity:0;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
}
.Popup:target {
display: inline;
opacity:1;
}
.Popup > div {
position: relative;
padding: 5px 20px 13px 20px;
border-radius: 10px;
background: #364653;
}
.close {
background: #606061;
color: #FFFFFF;
line-height: 25px;
position: absolute;
right: -12px;
text-align: center;
top: -10px;
width: 24px;
text-decoration: none;
-webkit-border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
}
.close:hover { background: #00d9ff; }
.md-typeset a {
color: rgba(var(--md_color__blue_500),1.00);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment