Skip to content

Commit 314e38b

Browse files
Archive GSoC 2022 files
1 parent 8a418fe commit 314e38b

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed

2022/students.html

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<head>
2+
<meta http-equiv="refresh" content="1; URL=https://python-gsoc.org/contributors.html" />
3+
</head>
4+
<body>
5+
<p>Page has been moved if you are not redirected in five seconds, <a href="https://python-gsoc.org/contributors.html">click here</a>.</p>
6+
7+
<style>
8+
.modalDialog {
9+
position: fixed;
10+
font-family: Arial, Helvetica, sans-serif;
11+
top: 0;
12+
right: 0;
13+
bottom: 0;
14+
left: 0;
15+
background: rgba(0, 0, 0, 0.8);
16+
z-index: 99999;
17+
opacity: 0;
18+
-webkit-transition: opacity 400ms ease-in;
19+
-moz-transition: opacity 400ms ease-in;
20+
transition: opacity 400ms ease-in;
21+
pointer-events: none;
22+
}
23+
.modalDialog:target {
24+
opacity: 1;
25+
pointer-events: auto;
26+
}
27+
.modalDialog > div {
28+
width: 400px;
29+
position: relative;
30+
margin: 10% auto;
31+
padding: 5px 20px 13px 20px;
32+
border-radius: 10px;
33+
background: #fff;
34+
background: -moz-linear-gradient(#fff, #999);
35+
background: -webkit-linear-gradient(#fff, #999);
36+
background: -o-linear-gradient(#fff, #999);
37+
}
38+
.close {
39+
background: #606061;
40+
color: #ffffff;
41+
line-height: 25px;
42+
position: absolute;
43+
right: -12px;
44+
text-align: center;
45+
top: -10px;
46+
width: 24px;
47+
text-decoration: none;
48+
font-weight: bold;
49+
-webkit-border-radius: 12px;
50+
-moz-border-radius: 12px;
51+
border-radius: 12px;
52+
-moz-box-shadow: 1px 1px 3px #000;
53+
-webkit-box-shadow: 1px 1px 3px #000;
54+
box-shadow: 1px 1px 3px #000;
55+
}
56+
.close:hover {
57+
background: #00d9ff;
58+
}
59+
</style>
60+
61+
<div id="openModal" class="modalDialog">
62+
<div>
63+
<a href="#close" title="Close" class="close">X</a>
64+
<h2>Archived</h2>
65+
<p>
66+
This site has been archived, go to
67+
<a target="_blank" href="https://python-gsoc.org/">this link</a> to find
68+
more about the latest GSoC program.
69+
</p>
70+
</div>
71+
</div>
72+
73+
<script>
74+
let tokens = String(window.location).split("#");
75+
if (
76+
tokens.length === 1 &&
77+
tokens[1] !== "openModal" &&
78+
tokens[1] !== "close"
79+
) {
80+
window.location = window.location + "#openModal";
81+
}
82+
</script>
83+
</body>
84+

0 commit comments

Comments
 (0)