fix more builder extremes
This commit is contained in:
parent
c15079f22f
commit
054c817f65
|
@ -1,4 +1,4 @@
|
||||||
/* Grayscale CSS v:0.4 | MIT LICENSE | https://github.com/n2geoff/grayscale */
|
/* Grayscale CSS v:0.8 | MIT LICENSE | https://github.com/n2geoff/grayscale */
|
||||||
:root {
|
:root {
|
||||||
--Hsl: 207;
|
--Hsl: 207;
|
||||||
--hSl: 50%;
|
--hSl: 50%;
|
||||||
|
@ -195,6 +195,7 @@ input[type="submit"],input[type="reset"] {
|
||||||
select {
|
select {
|
||||||
background: var(--bg) no-repeat 100%;
|
background: var(--bg) no-repeat 100%;
|
||||||
color: var(--fg);
|
color: var(--fg);
|
||||||
|
padding: clamp(.5rem, var(--space), 2rem);
|
||||||
appearance: none;
|
appearance: none;
|
||||||
background-size: 1ex;
|
background-size: 1ex;
|
||||||
background-origin: content-box;
|
background-origin: content-box;
|
||||||
|
@ -206,7 +207,7 @@ textarea {
|
||||||
resize: vertical;
|
resize: vertical;
|
||||||
border: 1px solid var(--theme);
|
border: 1px solid var(--theme);
|
||||||
height: calc(var(--line) * 6rem);
|
height: calc(var(--line) * 6rem);
|
||||||
padding: var(--space);
|
padding: clamp(.5rem, var(--space), 2rem);
|
||||||
cursor: text;
|
cursor: text;
|
||||||
color: var(--fg);
|
color: var(--fg);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue