-
Notifications
You must be signed in to change notification settings - Fork 7
/
style3.css
161 lines (151 loc) · 3.03 KB
/
style3.css
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
* {
margin:0px;
padding:0px;
}
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { display: table; content: ''; }
.clearfix:after { clear: both; }
input:focus, textarea:focus, keygen:focus, select:focus {
outline: none;
}
::-moz-placeholder {
color: #666;
font-weight: 300;
opacity: 1;
}
::-webkit-input-placeholder {
color: #666;
font-weight: 300;
}
/* Contact Form Styling */
.container1 {
padding: 0 50px 70px;
}
.textcenter {
text-align: center;
}
.section1 {
text-align: center;
display: table;
width: 100%;
}
.section1 .shtext {
display: block;
margin-top: 20px;
}
.section1 .seperator {
border-bottom:1px solid #a2a2a2;
width: 35px;
display: inline-block;
margin: 20px;
}
.section1 h1 {
font-size: 40px;
color: blue;
font-weight: normal;
}
.section2 {
width: 1200px;
margin: 25px auto;
}
.section2 .col2 {
width: 48.71%;
}
.section2 .col2.first {
float: left;
}
.section2 .col2.last {
float: right;
}
.section2 .col2.column2 {
padding: 0 30px;
}
.section2 span.collig {
color: #a2a2a2;
margin-right: 10px;
display: inline-block;
}
.section2 .sec2addr {
display: block;
line-height: 26px;
}
.section2 .sec2addr p:first-child {
margin-bottom: 10px;
}
.section2 .sec2contactform input[type="text"],
.section2 .sec2contactform input[type="email"],
.section2 .sec2contactform textarea {
padding: 18px;
border: 0;
background: white;
margin: 7px 0;
}
.section2 .sec2contactform textarea {
width: 100%;
display: block;
color: #666;
resize:none;
}
.section2 .sec2contactform input[type="submit"] {
padding: 15px 40px;
color: #fff;
border: 0;
background: blue;
font-size: 16px;
text-transform: uppercase;
margin: 7px 0;
cursor: pointer;
}
.section2 .sec2contactform h3 {
font-weight: normal;
margin: 20px 0;
margin-top: 30px;
border-bottom: 1px solid #ddd;
padding-bottom: 19px;
color: blue;
}
/* @media querries */
@media only screen and (max-width: 1266px) {
.section2 {
width: 100%;
}
}
@media only screen and (max-width: 960px) {
.container {
padding: 0 30px 70px;
}
.section2 .col2 {
width: 100%;
display: block;
}
.section2 .col2.first {
margin-bottom: 10px;
}
.section2 .col2.column2 {
padding: 0;
}
body .sec2map {
height: 250px !important;
}
}
@media only screen and (max-width: 768px) {
.section2 .sec2addr {
font-size: 14px;
}
.section2 .sec2contactform h3 {
font-size: 16px;
}
.section2 .sec2contactform input[type="text"], .section2 .sec2contactform input[type="email"], .section2 .sec2contactform textarea {
padding: 10px;
margin:3px 0;
}
.section2 .sec2contactform input[type="submit"] {
padding: 10px 30px;
font-size: 14px;
}
}
@media only screen and (max-width: 420px) {
.section1 h1 {
font-size: 28px;
}
}