Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
// CONTACT PAGE
2
 
3
.c-content-contact-1 {
4
	width: 100%;
5
	position: relative;
6
	margin-bottom: 70px;
7
 
8
	&:before{
9
		background-color:rgba(255,255,255,0.5);
10
	}
11
 
12
	&:after{
13
		background-color:rgba(255,255,255,0.5);
14
	}
15
 
16
	> .row {
17
 
18
		.c-body {
19
			position: relative;
20
			z-index: 100;
21
			background: #ffffff;
22
			margin: 40px 40px 40px 0;
23
			padding:60px 40px;
24
 
25
			> .c-section {
26
				margin-bottom: 15px;
27
				text-align: right;
28
 
29
				>.c-content-label{
30
					display:inline;
31
					padding:3px 7px;
32
					color:#fff;
33
				}
34
 
35
				> h3 {
36
					font-size:26px;
37
					margin:0 0 30px 0;
38
					text-transform: uppercase;
39
				}
40
 
41
				> p {
42
					font-size:16px;
43
					line-height:24px;
44
					color:#7f8c97;
45
					font-weight: 300;
46
				}
47
 
48
				> p,
49
				> .c-content-iconlist-1 {
50
					margin-top: 20px;
51
					>li{
52
						list-style: none;
53
						display: inline-block;
54
						font-size: 24px;
55
						padding:0 10px 5px 10px;
56
						background-color: #eee;
57
					}
58
				}
59
			}
60
		}
61
	}
62
}
63
 
64
// FULL WIDTH GMAPS CONTROLLER
65
.c-content-contact-1-gmap {
66
	display: block;
67
	top:0;
68
	bottom:0;
69
	left:0;
70
	right:0;
71
	position: absolute;
72
	width: 100%;
73
}
74
 
75
.c-content-feedback-1 {
76
	width: 100%;
77
 
78
	> .row{
79
 
80
		> div {
81
 
82
			.c-content-title-1{
83
 
84
				> h3{
85
					margin-top: 10px;
86
					margin-bottom: 20px;
87
				}
88
 
89
				> .c-line-left{
90
					margin-bottom:30px;
91
					height:3px;
92
					width:40px;
93
				}
94
 
95
				> p {
96
					margin-bottom: 30px;
97
					font-weight: 300;
98
				}
99
			}
100
 
101
			> .c-container{
102
				background-size:auto;
103
				padding:30px;
104
				margin: 0 0 30px 0;
105
 
106
				> .c-inverse{
107
 
108
					> h3{
109
						color:#ffffff;
110
						margin-top:10px;
111
					}
112
 
113
					> .c-line-left{
114
						background-color: #ffffff;
115
					}
116
 
117
					> p{
118
						color: #ffffff;
119
					}
120
				}
121
 
122
				&:last-child{
123
					margin-bottom:0;
124
 
125
					p {
126
						margin-bottom: 0;
127
					}
128
				}
129
			}
130
 
131
			> .c-contact{
132
 
133
			}
134
 
135
			form {
136
				margin-bottom: 20px;
137
 
138
				.input-group {
139
					width: 340px;
140
				}
141
			}
142
		}
143
	}
144
 
145
	.input-group {
146
		border: 0;
147
 
148
		.input-group-addon,
149
		.btn {
150
			border: 0;
151
		}
152
	}
153
 
154
}
155
 
156
 
157
 
158
// BEGIN: Mobile Mode
159
@media (max-width:1024px){
160
 
161
	.c-content-feedback-1 {
162
 
163
		>.row{
164
 
165
			> div{
166
 
167
				form {
168
					.input-group {
169
						width: 100%;
170
					}
171
				}
172
			}
173
		}
174
	}
175
 
176
}
177
 
178
@media (max-width: 991px) { /* 991px */
179
 
180
	.c-content-contact-1-gmap {
181
		display: block;
182
		position: static;
183
		width: 100%;
184
		height: 300px !important;
185
	}
186
 
187
	.c-content-contact-1 {
188
 
189
		> .row{
190
 
191
			> div {
192
				width:100%;
193
 
194
				.c-body {
195
					position: static;
196
					display: block;
197
					padding: 30px 20px 10px 20px;
198
					background: #fafafa;
199
					margin: 0;
200
					text-align:left;
201
 
202
					//@include clearfix();
203
				}
204
 
205
			}
206
 
207
		}
208
 
209
	}
210
 
211
	.c-content-feedback-1 {
212
 
213
		>.row{
214
 
215
			> div{
216
 
217
				>.c-container{
218
					margin-right:0;
219
					margin-bottom:40px;
220
				}
221
 
222
				> .c-contact{
223
					padding:40px 30px 0 30px;
224
					margin:0;
225
				}
226
 
227
			}
228
		}
229
 
230
		&.c-option-2{
231
 
232
			> .row{
233
 
234
				> div{
235
 
236
					> .c-contact{
237
						padding: 30px;
238
						margin-top:40px;
239
						background-color: #ffffff;
240
					}
241
				}
242
			}
243
		}
244
	}
245
}
246
 
247
// END