forked from forgejo/forgejo
Fix CSS linting errors
- Trivial auto-fix applied. - Removed CSS that was no longer needed (either was removed or upstream already improved the CSS). - Used existing variables for colors. - Fix CSS selectors to match existing ones.
This commit is contained in:
parent
c4a92ec9da
commit
c2280a2009
7 changed files with 120 additions and 143 deletions
|
@ -98,11 +98,12 @@ progress::-moz-progress-bar {
|
|||
|
||||
h1.error-code {
|
||||
font-size: 15em;
|
||||
font-weight: 800;
|
||||
font-weight: var(--font-weight-bold);
|
||||
color: transparent;
|
||||
--error-code-color-1: #a2a2a2;
|
||||
--error-code-color-2: #797979;
|
||||
background: repeating-linear-gradient(45deg, var(--error-code-color-1), var(--error-code-color-1) 10px, var(--error-code-color-2) 10px, var(--error-code-color-2) 20px);
|
||||
--gradient: repeating-linear-gradient(45deg, var(--error-code-color-1), var(--error-code-color-1) 10px, var(--error-code-color-2) 10px, var(--error-code-color-2) 20px);
|
||||
background: var(--gradient);
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue