_content.scss
1.0 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
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
/* Page Container */
.page-container {
clear: both;
}
.page-head {
background: #fff;
.container {
position: relative;
}
.page-title {
display: inline-block;
float: left;
padding: 19px 0;
> h1 {
color: #697882;
font-size: 22px;
font-weight: 400;
margin: 0;
> small {
color: #9eacb4;
font-size: 13px;
font-weight: 400;
}
}
}
$page-breadcrumb-toolbar-main-color: lighten(#EFF2F4, 3%);
.page-toolbar {
display: inline-block;
float: right;
}
}
.breadcrumb {
background: none;
padding: 0 0 15px 0;
margin: 0;
color: #c5ccd5;
}
.breadcrumb > li + li:before {
display: none;
}
.breadcrumb .fa {
font-size: 6px;
margin: 0 2px 0 4px;
position: relative;
top: -1px;
}
.breadcrumb > .active {
color: #9eacb4;
}
.page-content {
background: $page-content-bg-color;
padding: 15px 0 15px;
}
@media (max-width: $screen-sm-max) { /* 991px */
.page-head {
background: #EFF3F8;
@include reset-container();
}
.page-content {
padding-top: 0px;
@include reset-container();
}
}