Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/* Page Container */
2
.page-container {
3
	clear: both;
4
}
5
 
6
.page-head {
7
	background: #fff;
8
 
9
	.container {
10
		position: relative;
11
	}
12
 
13
	.page-title {
14
		display: inline-block;
15
		float: left;
16
		padding: 19px 0;
17
 
18
		> h1 {
19
			color: #697882;
20
			font-size: 22px;
21
			font-weight: 400;
22
			margin: 0;
23
 
24
			> small {
25
				color: #9eacb4;
26
				font-size: 13px;
27
				font-weight: 400;
28
			}
29
		}
30
	}
31
 
32
	$page-breadcrumb-toolbar-main-color: lighten(#EFF2F4, 3%);
33
 
34
	.page-toolbar {
35
		display: inline-block;
36
		float: right;
37
	}
38
}
39
 
40
.breadcrumb {
41
	background: none;
42
	padding: 0 0 15px 0;
43
	margin: 0;
44
	color: #c5ccd5;
45
}
46
 
47
.breadcrumb > li + li:before {
48
  display: none;
49
}
50
.breadcrumb .fa {
51
  font-size: 6px;
52
  margin: 0 2px 0 4px;
53
  position: relative;
54
  top: -1px;
55
}
56
.breadcrumb > .active {
57
  color: #9eacb4;
58
}
59
 
60
.page-content {
61
	background: $page-content-bg-color;
62
	padding: 15px 0 15px;
63
}
64
 
65
@media (max-width: $screen-sm-max) { /* 991px */
66
 
67
	.page-head {
68
		background: #EFF3F8;
69
 
70
    	@include reset-container();
71
	}
72
 
73
  	.page-content {
74
      	padding-top: 0px;
75
      	@include reset-container();
76
  	}
77
}