-
Notifications
You must be signed in to change notification settings - Fork 1
/
formstyle.css
173 lines (166 loc) · 2.87 KB
/
formstyle.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
162
163
164
165
166
167
168
169
170
171
172
173
body{
background-image: url("back.jpeg");
height: 500px;
background-size: cover;
}
h1{
font-family: Castellar;
font-size: 80px;
color: white;
}
h3{
color: white;
margin-top: -50px;
font-family: Bahnschrift Light;
}
header{
width:100%;
overflow:hidden;
height:90px;
background-color: black;
margin-top: -10px;
}
header nav{
margin-top:20px;
}
header nav ul{
list-style:none;
}
header nav ul li{
padding-left: 10px;
padding-right: 10px;
float:left;
overflow:hidden;
}
header nav ul li a{
text-decoration:none;
display:block;
padding:15px 13px;
text-transform:uppercase;
font-size:18px;
color:#ffffff;
font-style:normal;
}
header nav ul li b{
text-decoration:left;
display:block;
padding-left: 30px;
padding-right: 400px;
text-transform:uppercase;
font-size:35px;
font-family: Script MT;
color:blue;
}
header nav ul li a:hover, .active{
background:blue;
border-radius:3px;
}
.full{
max-width:960px;
margin:0 auto;
}
.Contact-Form{
width:100%;
margin:0 auto;
text-align:center;
margin-top:50px;
}
.Contact-Form h2{
color:#ffffff;
text-transform:capitalize;
margin-bottom:20px;
font-size:30px;
}
.Contact-Form p{
color:#9999B9;
margin-bottom:50px;
}
.input-fields{
width:45%;
float:left;
overflow:hidden;
margin-right:30px;
margin-top: 50px;
}
.input-fields input{
width:354px;
padding:15px 20px;
margin-bottom:20px;
border:0;
border-radius:3px ;
}
.msg{
width:45%;
overflow:hidden;
margin-top: 70px;
}
.msg textarea{
width:354px;
padding:10px 20px;
margin-bottom:20px;
height:160px;
border:0;
border-radius:3px ;
resize:none;
}
.Contact-Form button{
padding:15px 20px;
color:#ffffff;
text-transform:uppercase;
border:1px solid green;
background:blue;
cursor:pointer;
border-radius:3px;
margin-right: 40px;
margin-top: 15px;
}
.Contact-Form button:hover{
border:1px solid blue;
background:none;
}
.details{
width: 300px;
height:150px;
color: black;
background:white;
padding:10px;
float:left;
overflow:hidden;
margin-right:160px;
margin-top:50px;
border-radius:3px;
margin-bottom:50px;
}
.details:last-child{
margin-right:0;
}
.details h3{
padding-top: 60px;
font-size:16px;
color:black;
font-style:normal;
margin-left:10px;
margin-bottom:20px;
text-transform:uppercase;
text-align:left;
}
.details p{
font-size:13px;
font-family: Arial;
color:black;
font-style:normal;
margin:0;
padding:0;
text-align:left;
text-transform:capitalize;
margin-left:10px;
margin-bottom:2px;
}
footer{
background-color: black;
padding-bottom: 20px;
padding-top: 20px;
margin-top: 250px;
color: white;
text-align: center
}