Skip to content

Commit 260a0f1

Browse files
authored
Create style.css
1 parent 552b4a7 commit 260a0f1

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

style.css

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
progress[value] {
2+
/* Reset the default appearance */
3+
-webkit-appearance: none;
4+
-moz-appearance: none;
5+
appearance: none;
6+
border: none;
7+
color: White;
8+
}
9+
10+
/* Background Colors */
11+
progress, /* Firefox */
12+
progress[role][aria-valuenow] { /* Polyfill */
13+
/* RESETS */
14+
-webkit-appearance: none;
15+
-moz-appearance: none;
16+
appearance: none;
17+
border: none;
18+
background: #CCC; /* !important is needed by the polyfill */
19+
width: 240px;
20+
height: 1px;
21+
}
22+
23+
/* Chrome */
24+
progress::-webkit-progress-bar {
25+
background: #CCC;
26+
}
27+
28+
/* Foreground Colors */
29+
/* IE10 */
30+
progress {
31+
color: White;
32+
}
33+
34+
/* Firefox */
35+
progress::-moz-progress-bar {
36+
background: White;
37+
}
38+
39+
/* Chrome */
40+
progress::-webkit-progress-value {
41+
background: White;
42+
}
43+
44+
/* Polyfill */
45+
progress[aria-valuenow]:before {
46+
background: White;
47+
}
48+
49+
/* MICROSOFT EDGE ANNOYING VERTICAL LINE AT END OF VALUE */
50+
progress::-ms-fill {
51+
border-color: currentColor;
52+
}

0 commit comments

Comments
 (0)