Skip to content

Commit

Permalink
reset updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurhalder committed Sep 24, 2023
1 parent 92c7e12 commit db7047f
Showing 1 changed file with 75 additions and 1 deletion.
76 changes: 75 additions & 1 deletion styles/base/_reset.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// Global reset and normalization
*,
*::before,
*::after {
Expand Down Expand Up @@ -26,6 +25,8 @@ body {
ul,
ol {
list-style: none;
margin: 0;
padding: 0;
}

a {
Expand All @@ -41,4 +42,77 @@ input[type="submit"] {
border: none;
background: none;
cursor: pointer;
outline: none;
}

p {
margin: 0;
padding: 0;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea,
select {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-family: inherit;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
a.button {
text-decoration: none;
color: inherit;
background-color: transparent;
}

hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0;
}

fieldset {
margin: 0;
padding: 0;
border: none;
}

blockquote {
margin: 0;
padding: 0;
}

address {
font-style: normal;
}

pre {
margin: 0;
padding: 0;
font-size: 100%;
line-height: 1.5;
}

caption {
text-align: left;
}

li {
list-style-type: none;
}

ul,
ol {
list-style-position: outside;
}

0 comments on commit db7047f

Please sign in to comment.