-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.css
58 lines (52 loc) · 828 Bytes
/
contact.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
h1{
text-align: center;
}
.p{
text-align: left;
width: 70%;
margin: auto;
margin-top: 30px;
font-size: 18px;
}
#containerr{
grid-template-columns: repeat(1,1fr);
gap: 100px;
}
#inputbox{
display: grid;
grid-template-columns: repeat(2,1fr);
text-align: left;
width: 70%;
margin: auto;
gap: 20px;
}
#inputbox>div{
display: grid;
grid-template-rows: repeat(2,1fr);
text-align: left;
gap: 10px;
}
#message{
width: 200%;
height: 200px;
margin-top: -70px;
}
.btnn{
background-color: black;
color: white;
margin-top: 20px;
padding: 7px;
height: 40px;
width: 100px;
margin-bottom: 30px;
}
#main{
text-align: center;
}
.p{
line-height: 25px;
}
.p:hover{
background-color: black;
color: white;
}