This commit is contained in:
Kognise 2019-08-26 13:10:35 -04:00
parent a2cda5159d
commit 115037438c
No known key found for this signature in database
GPG key ID: 19AA40F6884A36D6
28 changed files with 196 additions and 190 deletions

View file

@ -151,14 +151,14 @@ mark {
}
button,
input[type="submit"],
input[type="button"],
input[type="checkbox"],
input[type="range"] {
input[type='submit'],
input[type='button'],
input[type='checkbox'],
input[type='range'] {
cursor: pointer;
}
input:not([type="checkbox"]):not([type="radio"]),
input:not([type='checkbox']):not([type='radio']),
select {
display: block;
}
@ -211,7 +211,7 @@ textarea {
outline: none;
}
input:not([type="checkbox"]):not([type="radio"]),
input:not([type='checkbox']):not([type='radio']),
select,
button,
textarea {
@ -226,8 +226,8 @@ textarea {
}
button,
input[type="submit"],
input[type="button"] {
input[type='submit'],
input[type='button'] {
padding-right: 30px;
padding-left: 30px;
}
@ -236,11 +236,11 @@ button:hover {
background: #dddddd;
}
input[type="submit"]:hover {
input[type='submit']:hover {
background: #dddddd;
}
input[type="button"]:hover {
input[type='button']:hover {
background: #dddddd;
}
@ -260,11 +260,11 @@ textarea:focus {
box-shadow: 0 0 0 2px #0096bfab;
}
input[type="checkbox"]:active,
input[type="radio"]:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="range"]:active,
input[type='checkbox']:active,
input[type='radio']:active,
input[type='submit']:active,
input[type='button']:active,
input[type='range']:active,
button:active {
transform: translateY(2px);
}
@ -293,17 +293,18 @@ textarea:disabled {
color: #949494;
}
input[type="range"] {
input[type='range'] {
-webkit-appearance: none;
margin: 10px 0;
padding: 10px 0;
background: transparent;
}
input[type="range"]:focus {
input[type='range']:focus {
outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
input[type='range']::-webkit-slider-runnable-track {
width: 100%;
height: 9.5px;
transition: 0.2s;
@ -311,7 +312,7 @@ input[type="range"]::-webkit-slider-runnable-track {
border-radius: 3px;
}
input[type="range"]::-webkit-slider-thumb {
input[type='range']::-webkit-slider-thumb {
box-shadow: 0px 1px 1px #000000, 0px 0px 1px #0d0d0d;
height: 20px;
width: 20px;
@ -321,11 +322,11 @@ input[type="range"]::-webkit-slider-thumb {
margin-top: -7px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
input[type='range']:focus::-webkit-slider-runnable-track {
background: #efefef;
}
input[type="range"]::-moz-range-track {
input[type='range']::-moz-range-track {
width: 100%;
height: 9.5px;
transition: 0.2s;
@ -333,7 +334,7 @@ input[type="range"]::-moz-range-track {
border-radius: 3px;
}
input[type="range"]::-moz-range-thumb {
input[type='range']::-moz-range-thumb {
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
height: 20px;
width: 20px;
@ -341,7 +342,7 @@ input[type="range"]::-moz-range-thumb {
background: #dbdbdb;
}
input[type="range"]::-ms-track {
input[type='range']::-ms-track {
width: 100%;
height: 9.5px;
background: transparent;
@ -350,21 +351,21 @@ input[type="range"]::-ms-track {
color: transparent;
}
input[type="range"]::-ms-fill-lower {
input[type='range']::-ms-fill-lower {
background: #efefef;
border: 0.2px solid #010101;
border-radius: 3px;
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type="range"]::-ms-fill-upper {
input[type='range']::-ms-fill-upper {
background: #efefef;
border: 0.2px solid #010101;
border-radius: 3px;
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type="range"]::-ms-thumb {
input[type='range']::-ms-thumb {
box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
border: 1px solid #000000;
height: 20px;
@ -373,11 +374,11 @@ input[type="range"]::-ms-thumb {
background: #dbdbdb;
}
input[type="range"]:focus::-ms-fill-lower {
input[type='range']:focus::-ms-fill-lower {
background: #efefef;
}
input[type="range"]:focus::-ms-fill-upper {
input[type='range']:focus::-ms-fill-upper {
background: #efefef;
}