-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.css
66 lines (61 loc) · 1.22 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
@import url('https://fonts.googleapis.com/css2?family=Tenali+Ramakrishna&display=swap');
*{
box-sizing: border-box;
margin: 0px;
padding: 0px;
font-family: "Tenali Ramakrishna", sans-serif;
}
.container{
width: 100vw;
height: 100vh;
background-color: #000000;
display: flex;
justify-content: center;
align-items: center;
}
.mainform{
height: 70vh;
width: 25vw;
background-color: #343A40;
border-radius: 10px;
color:white;
font-size: x-large;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;line-height: 2
;
}
.heading{
font-size: 4rem;
}
.input{
display: flex;
flex-direction: column;
}
.input input{
width: 15vw;
height: 2rem;
padding: 0.5rem;
border-radius: 5px;
}
.btns{
width: 30%;
margin-top: 4rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.btns button{
width: 100%;
font-size: large;
display: flex;
text-align: center;
justify-content: center;
border-radius: 5px;
box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.btns button a{
text-decoration: none;
color: black;
}