-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (123 loc) · 4.37 KB
/
index.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A beautiful Neomorphism styled webpage.">
<title>clone contests</title>
<style>
@font-face {
font-family: "IranSans";
src: url("https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font/Vazir.ttf") format("truetype");
}
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
background-color: #e0e0e0;
color: #333;
overflow: hidden;
position: relative;
}
.container {
width: 90%;
max-width: 800px;
padding: 20px;
background: #e0e0e0;
border-radius: 20px;
box-shadow: 8px 8px 15px #b8b8b8, -8px -8px 15px #ffffff;
transition: transform 0.3s ease-out;
margin: 10% 0;
}
h1 {
text-align: center;
color: #555;
margin: 0;
}
p {
font-size: 1.2rem;
line-height: 1.6;
text-align: justify;
}
.rtl {
direction: rtl;
text-align: right;
font-family: "IranSans", Arial, sans-serif;
}
a {
text-decoration: none;
color: #007BFF;
font-weight: bold;
position: relative;
transition: color 0.3s ease;
}
a::before {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: #007BFF;
transition: all 0.3s ease;
transform: translateX(-50%);
}
a:hover {
color: #0056b3;
}
a:hover::before {
width: 100%;
}
@media (max-width: 600px) {
body {
flex-direction: column;
padding: 10px;
height: auto;
overflow: auto;
}
.container {
margin: 10% 0;
}
h1 {
font-size: 1.5rem;
}
p {
font-size: 1rem;
}
}
</style>
</head>
<body>
<div class="container" id="container">
<h1>ICPC 2024 - west asia (Tehran site) mirror version</h1>
<p>
To access the contest, first register in <a href="https://quera.org/course/add_to_course/course/19909/">this class</a> (if you don't have a <a href="https://quera.org/">Quera</a> account, sign up there first) then enter <a href="https://quera.org/course/assignments/79348/problems">the contest</a>. (There are several other contests available as well).
<br>
This contest was cloned using the test data published <a href="https://icpc.sharif.edu/2024/">here</a> and with the help of <a href="https://github.com/ctrl-alt-Defeat-icpc/iq-ship">iq-ship</a> and <a href="https://github.com/ctrl-alt-Defeat-icpc/checker-manual-iqs">manual checkers</a>.
</p>
<p class="rtl">
با سلام ویژه به علاقهمندان! اگر میخواهید وارد کانتست بشوید ابتدا در <a href="https://quera.org/course/add_to_course/course/19909/">کلاس کوئرایی ما</a> ثبت نام کنید. (اگر هنوز در کوئرا ثبت نام نکردید اینکار رو بکنید.) سپس وارد <a href="https://quera.org/course/assignments/79348/problems">کانتست</a> بشید. به همین راحتی!
<br>
همچنین در این کلاس چندین کانتست دیگه هم شبیه سازی شدن. این شبیه سازی با کمک چند تا پروژه شبیه سازی شده که توی خود کانتست بهش اشاره شده! همچنین اگر به کدها و برنامههای گروه ما علاقهمندی یه نگاهی به <a href="https://github.com/ctrl-alt-Defeat-icpc">صفحه گیتهابمون</a> بنداز!
</p>
</div>
<script>
const container = document.getElementById('container');
document.addEventListener('mousemove', (event) => {
const x = (window.innerWidth / 2 - event.clientX) / 30;
const y = (window.innerHeight / 2 - event.clientY) / 30;
container.style.transform = `translate(${x}px, ${y}px)`;
});
document.addEventListener('touchmove', (event) => {
const touch = event.touches[0];
const x = (window.innerWidth / 2 - touch.clientX) / 30;
const y = (window.innerHeight / 2 - touch.clientY) / 30;
container.style.transform = `translate(${x}px, ${y}px)`;
});
</script>
</body>
</html>