-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
122 lines (104 loc) · 2.05 KB
/
Copy pathcontact.css
File metadata and controls
122 lines (104 loc) · 2.05 KB
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
body{
background-color:floralwhite;
background-image: url("Image/background.jpg");
background-size: cover;
background-attachment: fixed;
}
.Navigation ul{
margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
padding: 0px;
background-color:darkgrey;
list-style: none;
font-family: Arial, Helvetica, sans-serif;
height: 35px;
line-height: 35px;
font-size: 23px;
}
.Navigation li{
float:left;
border-right: 1px solid black;
margin:0 ;
}
.Navigation a{
display:block;
padding: 0 30px;
color: black;
text-decoration: none;
}
.Navigation a:hover{
background-color: red;
}
.container{
text-align: center;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
width: 80%;
margin: 50px auto;
}
.contact-box{
background-color: antiquewhite;
display: flex;
}
.contact-left{
flex-basis: 60%;
padding: 40px 60px;
}
.contact-right{
flex-basis: 40%;
padding: 40px;
background-color:rgb(148, 87, 44);
}
.input-row{
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.input-row .input-group{
flex-basis: 45%;
}
input{
width: 100%;
border:none;
border-bottom: 1px solid black;
outline: none;
padding-bottom: 5px;
}
textarea{
width: 100%;
border-bottom: 1px solid black;
outline: none;
padding: 10px;
box-sizing: border-box;
}
label{
margin-bottom: 6px;
display:block;
color: black;
}
button{
background-color: blue;
width: 100px;
border: none;
outline: none;
color: white;
height: 35px;
border-radius: 30px;
margin-top: 20px;
box-shadow: 0px 5px 5px 0px black;
}
.contact-left h3{
color: darkblue;
font-weight: 600;
margin-bottom: 30px;
}
.contact-right h3{
font-weight: 600;
margin-bottom: 30px;
}
tr td:first-child{
padding-right: 20px;
}
tr td{
padding-top: 20px;
}