Skip to content

Commit

Permalink
Fix buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineFr committed Aug 22, 2023
1 parent feb52c2 commit 99ece97
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions simple.css
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ input[type="submit"],
input[type="reset"],
input[type="button"],
label[type="button"] {
border-color: var(--accent);
border: 1px solid var(--accent);
background-color: var(--accent);
color: var(--bg);
padding: 0.5rem 0.9rem;
Expand All @@ -200,7 +200,8 @@ select:disabled,
button[disabled] {
cursor: not-allowed;
background-color: var(--disabled);
color: var(--text-light)
border-color: var(--disabled);
color: var(--text-light);
}

input[type="range"] {
Expand Down Expand Up @@ -412,14 +413,18 @@ button,
font-family: inherit;
padding: 0.5rem;
margin-bottom: 0.5rem;
color: var(--text);
background-color: var(--bg);
border: 1px solid var(--border);
border-radius: var(--standard-border-radius);
box-shadow: none;
max-width: 100%;
display: inline-block;
}
textarea,
select,
input {
color: var(--text);
background-color: var(--bg);
border: 1px solid var(--border);
}
label {
display: block;
}
Expand Down Expand Up @@ -673,4 +678,4 @@ sub {
border-radius: 5px;
padding: 1.5rem;
margin: 2rem 0;
}
}

0 comments on commit 99ece97

Please sign in to comment.