Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10,528 changes: 10,528 additions & 0 deletions dist/clay-kiln-edit.css

Large diffs are not rendered by default.

153,540 changes: 153,540 additions & 0 deletions dist/clay-kiln-edit.js

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions dist/clay-kiln-view-public.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
@-webkit-keyframes fadeInKilnLogo {
0% {
opacity: 0; }
100% {
opacity: 1; } }

@keyframes fadeInKilnLogo {
0% {
opacity: 0; }
100% {
opacity: 1; } }

.clay-kiln-logo {
background-color: rgba(255, 255, 255, 0.8);
display: none;
height: 100vh;
left: 0;
opacity: 0;
position: fixed;
top: 0;
width: 100vw;
z-index: 99999; }

.clay-kiln-logo.show {
-webkit-animation: 200ms ease forwards fadeInKilnLogo;
animation: 200ms ease forwards fadeInKilnLogo;
display: block; }

.clay-kiln-logo svg {
-webkit-box-sizing: border-box;
box-sizing: border-box;
height: 110px;
left: calc(50vw - 155px);
position: fixed;
top: calc(50vh - 55px);
width: 310px; }
Loading