-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactstyles.css
More file actions
53 lines (47 loc) · 921 Bytes
/
contactstyles.css
File metadata and controls
53 lines (47 loc) · 921 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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background-color: rgb(178, 226, 248);
height: 100vh;
font-family: Arial, Helvetica, sans-serif;
display: grid;
place-items: center;
}
h1{
margin-bottom: 2rem;
text-align: center;
font-size: 40px;
}
form{
display: flex;
flex-direction: column;
width: 24rem;
gap: 1rem;
}
input,textarea{
padding: 1.4rem;
background: transparent;
border: 1px solid black;
}
textarea{
height: 6rem;
}
button{
width: 8rem;
padding: 1.4rem;
cursor: pointer;
background: rgb(168, 241, 211);
color: black;
border-radius: 24px;
font-size: 24px;
}
button:hover{
background-color: black;
color: rgb(168, 241, 211);
transition-duration: 1000ms;
}