-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactMe.css
159 lines (136 loc) · 2.33 KB
/
contactMe.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
*{
padding: 0;
marign: 0;
box-sizing: border-box;
}
body{
font-family: Arial, sans-serif;
background-color: #FFE4E1;
}
.contact-container{
height: 100vh;
display:flex;
align-items: center;
justify-content: space-evenly;
}
.contact-left{
display: flex;
flex-direction: column;
align-item: start;
gap: 20px;
}
.contact-left-title h2{
font-weight: 600;
color: #a363aa;
font-size: 40px;
marign-bottom: 5px;
}
.contact-left-title hr{
border: none;
width:120px;
height: 5px;
background-color: #a363aa;
border-radius: 10px;
margin-bottom: 20px;
}
.contact-inputs{
width: 400px;
height:50px;
border: none;
outline: none;
paddding-left: 25px;
font-weight: 500;
color: #666;
border-radius: 50px;
}
.contact-left textarea{
height: 140px;
padding-top: 15px;
border-radius: 20px;
}
.contact-inputs:focus{
border: 2px solid #ff994f;
}
.contact-inputs::placeholder{
color:#a9a9a9;
}
.contact-left button{
display: flex;
align-items: center;
padding: 15px 30px;
font-size: 16px;
color:#fff;
gap:10px;
border: none;
border-radius: 50px;
background-image: linear-gradient(270deg,#ff994f,#fa6d86);
cursor: pointer;
}
.contact-left button img{
height: 15px;
}
.contact-right img{
width: 500px;
}
@media (max-width:800px){
.contact-inputs{
width: 80vw;
}
.contact-right{
display:none;
}
}
/* Overlay Navigation Styles */
.nav-overlay {
position: absolute;
top: 20px;
left: 20px;
z-index: 1000;
}
.nav-overlay img {
width: 50px;
cursor: pointer;
transition: transform 0.3s;
}
.nav-overlay img:hover {
transform: scale(1.1);
}
.dropdown-menu {
position: absolute;
top: 60px;
left: 0;
background-color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
display: none;
width: 150px;
padding: 10px 0;
z-index: 1000;
border-radius: 8px;
}
.dropdown-menu ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.dropdown-menu li {
text-align: left;
padding: 10px 15px;
}
.dropdown-menu li a {
color: #333;
text-decoration: none;
}
.dropdown-menu li a:hover {
color: #007bff;
}
/* Dimming Overlay */
#dimmingOverlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: none;
z-index: 900;
}