1
0
mirror of https://github.com/jdan/98.css.git synced 2025-09-01 18:03:10 +02:00

Merge branch 'master' into master

This commit is contained in:
Jordan Scales
2020-04-24 07:37:11 -04:00
committed by GitHub
4 changed files with 30 additions and 3 deletions

18
.editorconfig Normal file
View File

@@ -0,0 +1,18 @@
# https://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 80
trim_trailing_whitespace = true
[*.md]
max_line_length = 0
trim_trailing_whitespace = false
[COMMIT_EDITMSG]
max_line_length = 0

View File

@@ -258,6 +258,7 @@ input[type="checkbox"] {
-webkit-appearance: none; -webkit-appearance: none;
-moz-appearance: none; -moz-appearance: none;
margin: 0; margin: 0;
background: 0; /* necessary for hiding default disabled-state styling on iOS */
border: none; border: none;
} }
@@ -346,6 +347,8 @@ input[type="checkbox"][disabled]:checked + label::after {
} }
input[type="text"], input[type="text"],
input[type="password"],
input[type="email"],
select, select,
textarea { textarea {
padding: 3px 4px; padding: 3px 4px;
@@ -360,11 +363,15 @@ textarea {
} }
input[type="text"], input[type="text"],
input[type="password"],
input[type="email"],
select { select {
height: 21px; height: 21px;
} }
input[type="text"] { input[type="text"],
input[type="password"],
input[type="email"] {
/* For some reason descenders are getting cut off without this */ /* For some reason descenders are getting cut off without this */
line-height: 2; line-height: 2;
} }
@@ -383,6 +390,8 @@ select {
select:focus, select:focus,
input[type="text"]:focus, input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus { textarea:focus {
outline: none; outline: none;
} }