-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylecontact.css
88 lines (88 loc) · 1.41 KB
/
stylecontact.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
*{
margin:0;
padding:0;
}
body{
font-size: 14px;
}
.container{
width:80%;
margin: 50px auto;
}
.contact-box{
background: #fff;
display: flex;
}
.contact-left{
background: #ccc;
flex-basis: 60%;
padding: 40px 60px;
}
.contact-right{
flex-basis: 40%;
padding: 40px;
background: #b5005b;
color: #fff;
}
h1{
margin-bottom: 10px;
}
.container p{
margin-bottom: 40px;
}
.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 #ccc;
outline: none;
padding: 5px;
}
textarea{
width: 100%;
border: 1px solid #ccc;
outline: none;
padding: 5px;
}
label{
margin-bottom: 6px;
display :block;
color: #1c00b5;
}
button{
background: #1c00b5;
width: 100px;
border: none;
outline: none;
color: #fff;
height: 35px;
border-radius: 30px;
margin-top: 20px;
box-shadow: 0px 5px 15px 0px rgba(28,0,181,0.3);
}
.contact-left h3{
color: #1c00b5;
font-weight: 600;
margin-bottom: 30px;
}
.contact-right h3{
font-weight: 600;
margin-bottom: 30px;
}
tr td:first-child{
padding-right: 20px;
}
td{
padding-top: 10px;
}
.footer{
background: black;
height: 30px;
}