-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_general.scss
46 lines (42 loc) · 954 Bytes
/
_general.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
body {
background-color: #e9e9e9;
@include transition(all .5s);
font-family: 'Roboto', Arial, Tahoma, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: bold;
}
button,
input,
select,
a {
outline: none !important;
}
.no-animate {
-o-transition-property: none !important;
-moz-transition-property: none !important;
-ms-transition-property: none !important;
-webkit-transition-property: none !important;
transition-property: none !important;
-o-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-webkit-transform: none !important;
transform: none !important;
-webkit-animation: none !important;
-moz-animation: none !important;
-o-animation: none !important;
-ms-animation: none !important;
animation: none !important;
}
section {
&.content {
margin: 100px 15px 0 315px;
@include transition(.5s);
}
}