Skip to content

Instantly share code, notes, and snippets.

@elicus
Last active July 8, 2020 08:59
Show Gist options
  • Save elicus/cd431fc4a8cce1d73f0672de632199e1 to your computer and use it in GitHub Desktop.
Save elicus/cd431fc4a8cce1d73f0672de632199e1 to your computer and use it in GitHub Desktop.
.modal-example-1 .el-icon span.dipl_modal_trigger_element.dipl_modal_trigger_icon.et-pb-icon:before {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
background: #eeeeee;
border-radius: 50%;
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
-webkit-animation: pulse-aninmation 2s ease infinite;
animation: pulse-aninmation 1.5s ease infinite;
content: "";
}
.modal-example-1 .el-icon span.dipl_modal_trigger_element.dipl_modal_trigger_icon.et-pb-icon {
position: relative;
}
.et-db #et-boc .et-l .modal-example-1 .dipl_modal_trigger_icon {
background: #3EFFD8;
border-radius: 50%;
}
@keyframes pulse-aninmation {
0% {
transform: scale(1);
opacity: 1
}
100% {
transform: scale(1.5);
opacity: 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment