aboutsummaryrefslogtreecommitdiff
path: root/deploy/loader.css
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-08-01 22:43:48 -0400
committerbobzel <zzzman@gmail.com>2021-08-01 22:43:48 -0400
commit077723a6863bbb537756180450bdf9addeec021a (patch)
tree6655fe862a38dc85e32fc7dcc9d3e052f410d23f /deploy/loader.css
parent0546ecf205b7d2b76f341a7157beebf95fb888a8 (diff)
parentb1361eec6d3f554d4927931c339b5c169b9a54a7 (diff)
Merge branch 'master' of https://github.com/brown-dash/Dash-Web
Diffstat (limited to 'deploy/loader.css')
-rw-r--r--deploy/loader.css85
1 files changed, 85 insertions, 0 deletions
diff --git a/deploy/loader.css b/deploy/loader.css
new file mode 100644
index 000000000..4be0cc98c
--- /dev/null
+++ b/deploy/loader.css
@@ -0,0 +1,85 @@
+.dash-loader {
+ display: flex;
+ align-content: center;
+ justify-content: center;
+ background-color: #BDDDF5;
+ transition: 3s;
+ z-index: 10;
+ z-index:10;
+ width:100%;
+ height:100%;
+}
+
+.dash-loader-container {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ align-content: center;
+}
+
+.dash-progress-bar {
+ width: 200px;
+ height: 5px;
+ align-self: center;
+ margin-top: 20px;
+ background-color: #ececec;
+ border-radius: 5px;
+ overflow: hidden;
+}
+
+.dash-progress {
+ width: 0%;
+ height: 20px;
+ background-color: #4476F7;
+ transition: 0.1s;
+}
+
+.dash-animation-container {
+ width: 10vw;
+ height: 10vw;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 100%;
+ background-color: #4476F7;
+ justify-self: center;
+}
+
+.dash-loader-text {
+ font-size: 15px;
+ font-family: "Roboto";
+ font-weight: bold;
+ text-align: center;
+ color: #4476F7;
+ user-select: none;
+ -webkit-user-select: none;
+}
+
+.dash-d-path {
+ stroke-dasharray: 1000;
+ stroke-dashoffset: 1000;
+ animation: dash-d-path 3s linear infinite;
+}
+
+@keyframes dash-d-path {
+ 0% {
+ stroke-dashoffset: 1000;
+ }
+
+ 20% {
+ stroke-dashoffset: 0;
+ }
+
+ 70% {
+ stroke-dashoffset: 0;
+ }
+
+ 90% {
+ stroke-dashoffset: 1000;
+ }
+
+ 100% {
+ stroke-dashoffset: 1000;
+ }
+} \ No newline at end of file