-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.less
More file actions
49 lines (40 loc) · 1.04 KB
/
app.less
File metadata and controls
49 lines (40 loc) · 1.04 KB
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
@import "bower_components/bootstrap/less/bootstrap.less";
//@import "bower_components/bootstrap/less/theme.less";
@import "bower_components/font-awesome/less/font-awesome.less";
@fa-font-path: "bower_components/font-awesome/fonts";
/* Import fonts */
@import "fonts/fonts.css";
/* App-wide styles*/
@width: 1000px;
@red-color: #ff3333;
body{
background: #f2f2f2;
font: 14px rubikregular;
}
ul{
margin: 0;
padding: 0;
list-style: none;
}
a:hover{
text-decoration: none;
}
/* End App-wide styles*/
/* Component LESS */
@import "directive/header/header.less";
@import "partial/main/main.less";
@import "directive/cart/cart.less";
/* Add Component LESS Above */
/* Required for Angular UI Bootstrap */
.nav, .pagination, .carousel, .panel-title a { cursor: pointer; }
/* Personal preference for BS modal. The LESS below makes the backdrop white and
causes the modal to fade in rather than slide in. */
//@modal-backdrop-bg: white;
//.modal {
// &.fade {
// .transition(opacity .3s);
// }
// &.fade .modal-dialog {
// .translate(0,0);
// }
//}