Skip to content

Commit

Permalink
Shrink the spinner CSS a little bit
Browse files Browse the repository at this point in the history
... by disabling vscode's beautify formatter.
  • Loading branch information
tronical committed Aug 12, 2021
1 parent b2fb339 commit 9546f8c
Showing 1 changed file with 8 additions and 19 deletions.
27 changes: 8 additions & 19 deletions examples/plotter/index.html
Expand Up @@ -9,28 +9,17 @@
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
<style>
/* beautify ignore:start */
.spinner:before {
content: '';
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
width: 100px;
height: 100px;
margin-top: -10px;
margin-left: -10px;
border-radius: 50%;
border: 2px solid transparent;
border-top-color: #07d;
border-bottom-color: #07d;
content: ''; box-sizing: border-box; position: absolute;
top: 50%; left: 50%; width: 100px; height: 100px;
margin-top: -10px; margin-left: -10px;
border-radius: 50%; border: 2px solid transparent;
border-top-color: #07d; border-bottom-color: #07d;
animation: spinner 1s ease infinite;
}

@keyframes spinner {
to {
transform: rotate(360deg);
}
}
@keyframes spinner { to { transform: rotate(360deg); } }
/* beautify ignore:end */
</style>
</head>

Expand Down

0 comments on commit 9546f8c

Please sign in to comment.