We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4db2f67 commit 839dfe7Copy full SHA for 839dfe7
assets/scss/_reset.scss
@@ -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
14
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
32
33
+button, input{
34
+ border: 0;
35
36
+ &:focus{
37
38
+ }
39
40
+body {
41
42
+ background-color: $corBranca;
43
44
+html{
45
+ scroll-behavior: smooth;
46
0 commit comments