Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
dwhieb committed Mar 18, 2017
1 parent 16345f4 commit dd071ed
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 22 deletions.
60 changes: 41 additions & 19 deletions flexbox-reset.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,13 @@ select,
summary,
time,
video {
border: none;
border: 0;
border-collapse: collapse;
display: flex;
flex-direction: column;
font: inherit;
line-height: inherit;
margin: 0;
outline: none;
outline: 0;
padding: 0;
text-decoration: none;
vertical-align: baseline;
Expand All @@ -109,37 +108,47 @@ code,
del,
dfn,
em,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
i,
img,
input,
ins,
kbd,
map,
mark,
object,
p,
q,
samp,
select,
s,
small,
span,
strike,
strong,
sub,
sup,
textarea,
time,
tt,
var {
display: inline;
}
blockquote,
button,
caption,
dd,
dt,
figcaption,
h1,
h2,
h3,
h4,
h5,
h6,
input,
legend,
option,
output,
p,
pre,
select,
summary,
textarea {
display: block;
}
a,
a:link,
a:visited,
Expand All @@ -150,12 +159,12 @@ a:active {
text-decoration: none;
}
body {
background-color: white;
background: white;
color: black;
font-stretch: normal;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
min-height: 100vh;
}
blockquote,
Expand All @@ -169,11 +178,24 @@ q:after {
content: '';
content: none;
}
:focus {
outline: 0;
}
input[type=date],
input[type=datetime-local],
input[type=file],
input[type=month],
input[type=time],
input[type=week],
select {
flex-direction: row;
}
ol,
ul {
list-style: none;
}
table {
border-spacing: 0;
display: table;
}
tbody {
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flexbox-reset",
"version": "1.1.2",
"version": "2.0.0",
"description": "A CSS reset that uses the flexbox model by default.",
"keywords": [
"css",
Expand All @@ -18,7 +18,8 @@
"scripts": {
"build": "lessc flexbox-reset.less flexbox-reset.css"
},
"dependencies": {
"less": "^2.7.1"
"dependencies": {},
"devDependencies": {
"less": "^2.7.2"
}
}

0 comments on commit dd071ed

Please sign in to comment.