Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
//##  Direction
2
//
3
// Scripting direction
4
 
5
$direction:  						ltr !default;
6
 
7
//##  Colors
8
//
9
 
10
// Bootstrap brand colors
11
 
12
$brand-default:         			#c6c6c6 !default;
13
$brand-primary:         		 	#428bca !default;
14
$brand-success:         		 	#45B6AF !default;
15
$brand-info:            		 	#89C4F4 !default;
16
$brand-warning:         		 	#dfba49 !default;
17
$brand-danger:          		 	#F3565D !default;
18
 
19
// Bootstrap Components states
20
 
21
$state-default-text:             	#333333 !default;
22
$state-default-bg:           	 	$brand-default !default;
23
$state-default-border:       	 	darken(adjust-hue($state-default-bg, -10), 5%) !default;
24
 
25
$state-primary-text:          	 	#D8E3F2 !default;
26
$state-primary-bg:        		 	$brand-primary !default;
27
$state-primary-border:    	 	 	darken(adjust-hue($state-primary-bg, -10), 5%) !default;
28
 
29
$state-success-text:             	#3c763d !default;
30
$state-success-bg:               	#dff0d8 !default;
31
$state-success-border:           	darken(adjust-hue($state-success-bg, -10), 5%) !default;
32
 
33
$state-info-text:                	#31708f !default;
34
$state-info-bg:                  	#d9edf7 !default;
35
$state-info-border:              	darken(adjust-hue($state-info-bg, -10), 7%) !default;
36
 
37
$state-warning-text:             	#8a6d3b !default;
38
$state-warning-bg:               	#fcf8e3 !default;
39
$state-warning-border:           	darken(adjust-hue($state-warning-bg, -10), 5%) !default;
40
 
41
$state-danger-text:              	#a94442 !default;
42
$state-danger-bg:                	#f2dede !default;
43
$state-danger-border:            	darken(adjust-hue($state-danger-bg, -10), 5%) !default;
44
 
45
// Bootstrap Buttons
46
 
47
$btn-font-weight:                	normal !default;
48
 
49
$btn-default-color:              	#333 !default;
50
$btn-default-bg:                 	#fff !default;
51
$btn-default-border:             	#ccc !default;
52
 
53
$btn-primary-color:              	#fff !default;
54
$btn-primary-bg:                 	$brand-primary !default;
55
$btn-primary-border:             	darken($btn-primary-bg, 5%) !default;
56
 
57
$btn-success-color:              	#fff !default;
58
$btn-success-bg:                 	$brand-success !default;
59
$btn-success-border:             	darken($btn-success-bg, 5%) !default;
60
 
61
$btn-info-color:                	#fff !default;
62
$btn-info-bg:                    	$brand-info !default;
63
$btn-info-border:                	darken($btn-info-bg, 5%) !default;
64
 
65
$btn-warning-color:              	#fff !default;
66
$btn-warning-bg:                 	$brand-warning !default;
67
$btn-warning-border:             	darken($btn-warning-bg, 5%) !default;
68
 
69
$btn-danger-color:               	#fff !default;
70
$btn-danger-bg:                  	$brand-danger !default;
71
$btn-danger-border:              	darken($btn-danger-bg, 5%) !default;
72
 
73
$btn-link-disabled-color:        	#eee !default;
74
 
75
//##  Typography
76
//
77
// Font, line-height, and color for body text, headings, and more.
78
 
79
$font-family-primary:  	  		 	"Open Sans", sans-serif !default;
80
$font-family-default:  	  		 	"Helvetica Neue", Helvetica, Arial, sans-serif !default;
81
 
82
$font-size-base:          		 	13px !default;
83
$font-size-normal:        		 	14px !default;
84
$font-size-large:         		 	ceil(($font-size-base * 1.25)) !default; // ~18px
85
$font-size-small:         		 	ceil(($font-size-base * 0.85)) !default; // ~12px
86
 
87
$icon-size-base:          		 	13px !default;
88
$icon-size-normal:        		 	14px !default;
89
$icon-size-large:         		 	ceil(($icon-size-base * 1.25)) !default; // ~18px
90
$icon-size-small:         		 	ceil(($icon-size-base * 0.85)) !default; // ~12px
91
 
92
$font-size-h1:            		 	floor(($font-size-base * 2.6)) !default; // ~36px
93
$font-size-h2:            			floor(($font-size-base * 2.15)) !default; // ~30px
94
$font-size-h3:            			ceil(($font-size-base * 1.7)) !default; // ~24px
95
$font-size-h4:            			ceil(($font-size-base * 1.25)) !default; // ~18px
96
$font-size-h5:            			$font-size-base !default;
97
$font-size-h6:            			ceil(($font-size-base * 0.85)) !default; // ~12px
98
 
99
// Global text color on <body>
100
$text-color:            			#333333 !default;
101
 
102
// Global light text color on <body>
103
$text-light-color:     	 			#ffffff !default;
104
 
105
// Global muted text color on <body>
106
$text-muted-color:      			#444444 !default;
107
 
108
// Global textual link color.
109
$link-color:            			#5b9bd1 !default;
110
 
111
// Link hover color.
112
$link-hover-color:      			darken($link-color, 15%) !default;
113
 
114
$primary-link-color:                #65A0D0;
115
 
116
//== Forms Controls
117
 
118
$input-bg:                       	#fff !default;
119
$input-bg-disabled:              	#eeeeee !default;
120
 
121
$input-color:                    	#333 !default;
122
$input-border:                   	#e5e5e5 !default;
123
$input-border-focus:             	#999 !default;
124
 
125
$input-color-placeholder:        	lighten($input-color, 50%) !default;
126
$input-icon-color:               	#999 !default;
127
 
128
// Webkit browser custom scrollbar
129
$webkit-scrollbar-width: 			10px;
130
$webkit-scrollbar-track: 			#eaeaea;
131
$webkit-scrollbar-thumb: 			#cecece;
132
$webkit-scrollbar-thumb-hover: 		#aaaaaa;
133
 
134
//## Border radius
135
$general-border-radius:             4px;
136
$form-control-border-radius:        4px;
137
$portlet-border-radius:             4px;
138
 
139
 
140
//## Z-index master list
141
//
142
// Warning: Avoid customizing these values. They're used for a bird's eye view
143
// of components dependent on the z-axis and are designed to all work together.
144
//
145
// Note: These variables are not generated into the Customizer.
146
 
147
$zindex-navbar:            			9995 !default;
148
$zindex-navbar-above:      			9999 !default;
149
$zindex-dropdown:          			1000 !default;
150
$zindex-popover:           			1010 !default;
151
$zindex-tooltip:           			1030 !default;
152
$zindex-navbar-fixed:      			1030 !default;
153
$zindex-modal-background:  			10049 !default;
154
$zindex-modal:             			10050 !default;
155
$zindex-top:						10100 !default;
156
 
157
//## Media queries breakpoints
158
//
159
//Define the breakpoints at which your layout will change, adapting to different screen sizes.
160
 
161
// Extra small screen / phone
162
$screen-xs-min:              		480px !default;
163
 
164
// Small screen / tablet
165
$screen-sm-min:              		768px !default;
166
 
167
// Medium screen / desktop
168
$screen-md-min:              		992px !default;
169
 
170
// Large screen / wide desktop
171
$screen-lg-min:             	 	1200px !default;
172
 
173
// Large scree / wider desktop
174
$screen-lg-med:                     1260px !default;
175
 
176
// So media queries don't overlap when required, provide a maximum
177
$screen-xs-max:              		($screen-sm-min - 1) !default;
178
$screen-sm-max:              		($screen-md-min - 1) !default;
179
$screen-md-max:              		($screen-lg-min - 1) !default;