-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path_reset.scss
78 lines (68 loc) · 903 Bytes
/
_reset.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
body {
line-height: 25px;
font-size: 16px;
font-family: $primary-font;
font-weight: 400;
color: $text-color;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: $title-font;
font-weight: 500;
color: $title-color;
}
.list {
list-style: none;
margin: 0px;
padding: 0px;
}
a {
text-decoration: none;
transition: all 0.3s ease-in-out;
&:hover,
&:focus {
text-decoration: none;
outline: none;
}
}
.row.m0 {
margin: 0px;
}
button:focus {
outline: none;
box-shadow: none;
}
.mb-15 {
margin-bottom: 15px;
}
.mt-10 {
margin-top: 10px;
}
.mt-20 {
margin-top: 20px;
}
.mt-25 {
margin-top: 25px;
}
.white_bg {
background: #fff !important;
}
.mt-100 {
margin-top: 100px;
@media (max-width: 991px) {
margin-top: 0px;
}
}
.mt--100 {
margin-top: -100px;
@media (max-width: 991px) {
margin-top: 0px;
}
}
.title-bg {
background: $title-color;
}