i give up on the progress element
This commit is contained in:
parent
0af8c8d9c1
commit
17690c8456
2 changed files with 7 additions and 6 deletions
|
@ -297,10 +297,6 @@
|
|||
</fieldset>
|
||||
<br />
|
||||
|
||||
<p>
|
||||
this close to losing it
|
||||
<progress max="100" value="97"></progress>
|
||||
</p>
|
||||
<p>
|
||||
<b>did you know?</b> this website has a total of 0 bytes of javascript<br />
|
||||
in my opinion, simple websites like this shouldn't require a powerful system to render. i want my site to be accessible on an old smartphone, on
|
||||
|
|
|
@ -37,6 +37,7 @@ code {
|
|||
|
||||
background-color: var(--base);
|
||||
color: var(--text);
|
||||
accent-color: var(--pink);
|
||||
}
|
||||
|
||||
body {
|
||||
|
@ -79,11 +80,15 @@ progress {
|
|||
border-color: var(--text);
|
||||
background-color: var(--base);
|
||||
color: var(--pink);
|
||||
accent-color: var(--pink);
|
||||
}
|
||||
|
||||
::-moz-progress-bar,
|
||||
::-webkit-progress-value {
|
||||
background-color: var(--pink) !important;
|
||||
}
|
||||
::-webkit-progress-bar {
|
||||
background-color: var(--pink);
|
||||
background-color: var(--base);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
footer {
|
||||
|
|
Loading…
Reference in a new issue