diff --git a/public/index.css b/public/index.css new file mode 100644 index 000000000..839299926 --- /dev/null +++ b/public/index.css @@ -0,0 +1,33 @@ +.loader { + border: 16px solid #f3f3f3; + border-top: 16px solid #3498db; + border-radius: 50%; + box-sizing: border-box; + width: 120px; + height: 120px; + animation: spin 2s linear infinite; + margin: auto; + text-align: center; + position: absolute; + top: 50%; + left: 50%; +} + +/* .background { + height: 100%; + padding: 1.5rem; + position: relative; + color: #eceff1; + overflow: auto; + background: url('/images/bg/bg-pattern.png'), + linear-gradient(to right, rgb(121, 22, 254), rgb(172, 47, 138)); +} */ + +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} diff --git a/public/index.html b/public/index.html index 331d99cfa..17de22652 100644 --- a/public/index.html +++ b/public/index.html @@ -19,6 +19,9 @@ img-src * data: filesystem: blob: ; "> + + +