-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.css
146 lines (125 loc) · 2.71 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
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
/* General Styles */
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #0d1117;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.contact-container {
width: 100%;
max-width: 1000px;
background-color: #161b22;
border-radius: 10px;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
padding: 2rem;
overflow: hidden;
}
.contact-header {
text-align: center;
margin-bottom: 2rem;
}
.contact-header h1 {
color: #ff6f61;
font-size: 2.5rem;
}
.contact-header p {
color: #cccccc;
font-size: 1.1rem;
margin-top: 0.5rem;
}
.contact-content {
display: flex;
justify-content: space-between;
gap: 2rem;
}
.contact-form {
flex: 1;
background-color: #21262d;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.contact-form .form-group {
margin-bottom: 1.5rem;
}
.contact-form label {
display: block;
color: #ffffff;
font-size: 1rem;
margin-bottom: 0.5rem;
}
.contact-form input, .contact-form textarea {
width: 100%;
padding: 0.8rem;
font-size: 1rem;
border: 2px solid #00d8ff;
border-radius: 5px;
background-color: #ffffff;
color: #000000;
}
.contact-form input:focus, .contact-form textarea:focus {
outline: none;
border-color: #ff6f61;
}
.contact-form .submit-btn {
width: 100%;
padding: 0.8rem;
font-size: 1.2rem;
background: #00d8ff;
color: #161b22;
border: none;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
transition: background 0.3s ease;
}
.contact-form .submit-btn:hover {
background: #ff6f61;
color: #ffffff;
}
.contact-info {
flex: 1;
background-color: #21262d;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.contact-info h3 {
color: #ff6f61;
margin-bottom: 1rem;
}
.contact-info p {
color: #ffffff;
font-size: 1.1rem;
margin: 0.5rem 0;
}
.contact-info a {
color: #00d8ff;
text-decoration: none;
}
.contact-info a:hover {
color: #ff6f61;
}
.social-icons {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-icons a img {
width: 30px;
height: 30px;
}
@media (max-width: 768px) {
.contact-content {
flex-direction: column;
align-items: center;
}
.contact-form, .contact-info {
width: 100%;
margin-bottom: 2rem;
}
}