Skip to content

Instantly share code, notes, and snippets.

@mkk360
Created January 18, 2022 08:44
Show Gist options
  • Select an option

  • Save mkk360/23c3be161b9289cff7a427b3602b28f7 to your computer and use it in GitHub Desktop.

Select an option

Save mkk360/23c3be161b9289cff7a427b3602b28f7 to your computer and use it in GitHub Desktop.
<style>
animation: wobble .45s cubic-bezier(.36,.07,.19,.97);
.empty-card {
display: block;
border-radius: 6px;
background-color: #f8f9fa;
background-image: repeating-linear-gradient(
90deg
,#c0c3c8 0,#c0c3c8 50%,transparent 0,transparent),repeating-linear-gradient(
90deg
,#c0c3c8 0,#c0c3c8 50%,transparent 0,transparent),repeating-linear-gradient(
180deg
,#c0c3c8 0,#c0c3c8 50%,transparent 0,transparent),repeating-linear-gradient(
180deg
,#c0c3c8 0,#c0c3c8 50%,transparent 0,transparent);
background-position: 0 0,0 100%,0 0,100% 0;
background-repeat: repeat-x,repeat-x,repeat-y,repeat-y;
background-size: 20px 1px,20px 1px,1px 20px,1px 20px;
height: 100%;
max-height: 40.7rem;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment