Started to build out the app. Its got a basic set of features and it should really be in VC

This commit is contained in:
Max G
2019-07-19 20:51:57 +00:00
parent dbc3e5428c
commit 61754fe290
513 changed files with 81139 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
/*******************************
Progress
*******************************/
.ui.progress .bar {
background-size: 30px 30px;
background-image:
linear-gradient(
135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%,
transparent 50%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.08) 75%,
transparent 75%, transparent
)
;
}
.ui.progress.active .bar:after {
animation: none;
}
.ui.progress.active .bar {
animation: progress-striped 3s linear infinite;
}
@keyframes progress-striped {
0% {
background-position: 0px 0;
}
100% {
background-position: 60px 0;
}
}

View File

@@ -0,0 +1,3 @@
/*******************************
Progress
*******************************/