-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
112 lines (95 loc) · 2.11 KB
/
contact.css
File metadata and controls
112 lines (95 loc) · 2.11 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
.contacts{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 80px;
margin: 80px 170px;
}
.contact-section{
display: flex;
gap: 150px;
}
.contact-left{
display: flex;
flex-direction: column;
gap: 30px;
}
.contact-left h1{
font-size: 60px;
width: 390px;
font-weight: 700;
background: linear-gradient(270deg, #DF8908 80%, #B415FF 100% );
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
position: relative;
z-index: 100;
}
.contact-detail{
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 10px;
}
.contact-detail img{
width: 20px; /* Fixed width for logos */
height: auto; /* Maintains aspect ratio */
object-fit: cover;
border-radius: 5px;
}
.contact-detail p{
line-height: 30px;
}
.contact-left > p{
line-height: 28px;
}
.contact-right{
display: flex;
flex-direction: column;
align-items: start;
gap: 30px;
}
.contact-right label{
color: white;
font-size: 18px;
font-weight: 500;
}
.contact-right input{
width: 700px;
height: 58px;
padding-left: 22px;
padding-right: 4px;
background: #32323c;
color: #A0A0A0;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 20px;
border: none;
border-radius: 10px;
}
.contact-right textarea{
width: 650px;
border: none;
padding: 25px;
border-radius: 10px;
background-color: #32332C;
color: #A0A0A0;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 20px;
}
.contact-submit{
border: none;
color: white;
border-radius: 50px;
background: linear-gradient(270deg, #DF8908 -5.00%, #B415FF 106.28%);
font-size: 18px;
padding: 20px 60px;
margin-bottom: 60px;
cursor: pointer;
font-weight: 700;
transition: 0.3s;
}
.contact-submit:hover{
transform: scale(1.1);
transition: 0.3s;
}