Skip to content

Commit 839dfe7

Browse files
committed
Create _reset.scss
1 parent 4db2f67 commit 839dfe7

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

assets/scss/_reset.scss

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
//Zerando as configurações dos navegadores
2+
* {
3+
padding: 0;
4+
margin: 0;
5+
font-family: $fontPrincipal;
6+
}
7+
*, ::before, ::after{
8+
box-sizing: border-box;
9+
}
10+
ul,
11+
ol {
12+
list-style: none;
13+
margin: 0;
14+
padding: 0;
15+
}
16+
a {
17+
text-decoration: none;
18+
}
19+
img{
20+
max-width: 100%;
21+
height: auto;
22+
display: block;
23+
}
24+
p,
25+
h1,
26+
h2,
27+
h3,
28+
h4,
29+
h5,
30+
h6 {
31+
margin: 0;
32+
}
33+
button, input{
34+
border: 0;
35+
font-family: $fontPrincipal;
36+
&:focus{
37+
border: 0;
38+
}
39+
}
40+
body {
41+
font-family: $fontPrincipal;
42+
background-color: $corBranca;
43+
}
44+
html{
45+
scroll-behavior: smooth;
46+
}

0 commit comments

Comments
 (0)