-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
119 lines (107 loc) · 3.37 KB
/
Contact.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Emails</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
padding: 2rem;
width: 100%;
max-width: 800px;
}
h1 {
text-align: center;
color: #2d3436;
margin-bottom: 3rem;
font-size: 2.5rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.email-container {
display: grid;
gap: 1.5rem;
}
.email-card {
background: white;
padding: 1.5rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
align-items: center;
}
.email-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.email-input {
width: 100%;
padding: 0.5rem;
font-size: 1.1rem;
border: 2px solid #e0e0e0;
border-radius: 5px;
background-color: #f8f9fa;
color: #2d3436;
font-weight: 500;
outline: none;
transition: border-color 0.3s ease;
}
.email-input:hover {
border-color: #a0a0a0;
}
.email-input:focus {
border-color: #2d3436;
background-color: white;
}
@media (max-width: 768px) {
.container {
padding: 1rem;
}
h1 {
font-size: 2rem;
}
.email-input {
font-size: 1rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Our Team Contacts</h1>
<div class="email-container">
<div class="email-card">
<input type="text" class="email-input" value="scpf.site.omegon.human.resources@tidio.xyz" readonly>
</div>
<div class="email-card">
<input type="text" class="email-input" value="scpf.site.omegon.website.dev@tidio.xyz" readonly>
</div>
<div class="email-card">
<input type="text" class="email-input" value="site.omegon.game.development.team@tidio.xyz" readonly>
</div>
<div class="email-card">
<input type="text" class="email-input" value="scpf.site.omegon.game.support@tidio.xyz" readonly>
</div>
<div class="email-card">
<input type="text" class="email-input" value="legal.site.omegon@tidio.xyz" readonly>
</div>
<div class="email-card">
<input type="text" class="email-input" value="site.omegon.bot.development.team@tidio.xyz" readonly>
</div>
</div>
</div>
</body>
</html>