Skip to content
Open
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
61 changes: 61 additions & 0 deletions prashant/coolcode.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
.pure-material-progress-linear {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: none;
height: 0.25em;
color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
background-color: rgba(var(--pure-material-primary-rgb, 33, 150, 243), 0.12);
font-size: 16px;
}

.pure-material-progress-linear::-webkit-progress-bar {
background-color: transparent;
}

/* Determinate */
.pure-material-progress-linear::-webkit-progress-value {
background-color: currentColor;
transition: all 0.2s;
}

.pure-material-progress-linear::-moz-progress-bar {
background-color: currentColor;
transition: all 0.2s;
}

.pure-material-progress-linear::-ms-fill {
border: none;
background-color: currentColor;
transition: all 0.2s;
}

/* Indeterminate */
.pure-material-progress-linear:indeterminate {
background-size: 200% 100%;
background-image: linear-gradient(to right, transparent 50%, currentColor 50%, currentColor 60%, transparent 60%, transparent 71.5%, currentColor 71.5%, currentColor 84%, transparent 84%);
animation: pure-material-progress-linear 2s infinite linear;
}

.pure-material-progress-linear:indeterminate::-moz-progress-bar {
background-color: transparent;
}

.pure-material-progress-linear:indeterminate::-ms-fill {
animation-name: none;
}

@keyframes pure-material-progress-linear {
0% {
background-size: 200% 100%;
background-position: left -31.25% top 0%;
}
50% {
background-size: 800% 100%;
background-position: left -49% top 0%;
}
100% {
background-size: 400% 100%;
background-position: left -102% top 0%;
}
}