-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
57 lines (45 loc) · 989 Bytes
/
contact.css
File metadata and controls
57 lines (45 loc) · 989 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Meie+Script&family=Mogra&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Meie+Script&family=Mogra&family=Yatra+One&display=swap');
body{
background-color: rgb(16, 16, 16);
}
*{
margin: 0;
}
form{
position: relative;
top: 260px;
left: 550px;
height: 260px;
width: 380px;
background-color: rgb(81, 79, 79);
border: solid 1px;
padding: 30px;
border-radius: 20px;
font-family: "Yatra One", system-ui;
font-weight: 400;
font-style: normal;
}
h1{
text-align: center;
margin-bottom: 10px;
font-family: "Mogra", system-ui;
font-weight: 400;
font-style: normal;
}
input{
padding: 6px;
margin-left: 100px;
width: 200px;
}
button{
padding: 8px;
border-radius: 10px;
font-size: 20px;
margin-left: 150px;
width: 90px;
}
button:hover{
background-color: rgb(0, 0, 0);
color: aliceblue;
}