-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
95 lines (85 loc) · 1.61 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body {
margin-left: 50%;
background-size: 80% 103%;
background-repeat: no-repeat;
font-family: "outfit";
}
.btn {
margin-left: 8px;
display: flex;
}
.contact-container {
margin-right: -20px;
height: 100vh;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.contact-left {
display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
}
.contact-left-title h2 {
font-weight: 800;
color: rgb(61, 61, 178);
font-size: 60px;
margin-bottom: 5px;
}
.contact-left-title hr {
background-color: rgb(61, 61, 178);
border: none;
width: 200px;
height: 6px;
border-radius: 12px;
margin-right: 115px;
}
.contact-inputs {
width: 400px;
height: 50px;
border: 2px solid rgb(61, 61, 178);
outline: none;
padding-right: 25px;
font-weight: 500px;
color: grey;
border-radius: 40px;
padding-left: 25px;
font-size: 20px;
}
.contact-left textarea {
height: 140px;
padding-top: 15px;
border-radius: 20px;
}
.contact-inputs:hover {
border: 3px solid orange;
}
.contact-left button:hover {
background-color: rgb(98, 98, 220);
color: white;
width: 155px;
height: 55px;
border: 2px solid orange;
}
.contact-left button {
width: 150px;
height: 50px;
border: none;
outline: none;
background-color: rgb(61, 61, 178);
color: white;
font-weight: 600;
border-radius: 20px;
cursor: pointer;
/* display: flex; */
font-size: large;
}
@media (max-width: 800px) {
.contact-inputs {
width: 80vw;
}
.contact-right {
display: none;
}
}