Skip to content

Instantly share code, notes, and snippets.

@tonkec
Created February 21, 2019 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonkec/4f28329ad728ccdd923e19d80948e950 to your computer and use it in GitHub Desktop.
Save tonkec/4f28329ad728ccdd923e19d80948e950 to your computer and use it in GitHub Desktop.
@import url('https://fonts.googleapis.com/css?family=Poppins');
/*------------------------------General--------------------------*/
body {
font-family: 'Poppins', sans-serif;
}
section {
margin-left: 100px;
margin-right: 100px;
display: inline-block;
}
.pie-card {
min-height: 600px;
}
/*------------------------------Spinner--------------------------*/
.lds-ripple {
display: inline-block;
position: relative;
width: 64px;
height: 64px;
}
.lds-ripple div {
position: absolute;
border: 4px solid #dfc;
opacity: 1;
border-radius: 50%;
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
animation-delay: -0.5s;
}
@keyframes lds-ripple {
0% {
top: 28px;
left: 28px;
width: 0;
height: 0;
opacity: 1;
}
100% {
top: -1px;
left: -1px;
width: 58px;
height: 58px;
opacity: 0;
}
}
#overlay {
background: rgba(0, 0, 0, 0.9);
text-align: center;
margin-left: auto;
margin-right: auto;
position: fixed;
padding: 23%;
height: 100%;
width: 100%;
z-index: 100000;
}
/*------------------------------Header--------------------------*/
.logo {
color: #4bbf73;
font-size: 22px;
}
.logo:hover {
color: #8ad5a4;
text-decoration: none;
}
/*------------------------------Footer--------------------------*/
.footer {
padding-top: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment