-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.css
77 lines (72 loc) · 1.3 KB
/
contactus.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-color: #1b1c1e;
text-align: center;
}
h1{
font-family: 'Noto Sans', sans-serif;
/* font-family: 'Poppins', sans-serif; */
font-size: 59px;
color: white;
font-weight: 600;
padding-bottom: 20px;
}
p{
color: #d2d2d2;
}
p,input,textarea,label{
font-family: 'Noto Sans', sans-serif;
}
.container{
max-width:1320px;
margin: 0 auto;
padding: 5%;
}
form{
max-width: 500px;
margin: 0 auto;
text-align: left;
padding: 20px 0px;
}
input,textarea,label{
display: block;
margin: 0 auto;
width:100%;
color: #828282;
}
input,textarea{
border:0;
background-color: transparent;
border-bottom: 2px solid #828282;
}
input[type=submit]{
background-color: #545557;
font-size: 18px;
padding: 15px 0;
color: white;
border-bottom: none;
margin-top: 30px ;
cursor: pointer;
}
input[type=submit]:hover{
background-color: #fff;
color: #1b1c1e;
}
input,textarea{
color: white;
font-size: 18px;
padding: 10px;
}input:focus,textarea:focus{
outline: 1px solid #828282;
}
a{
color: #828282;
font-style: italic;
}
a:hover{
color:#fff;
}