-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold-index.html
88 lines (78 loc) · 1.67 KB
/
old-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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SQA.MY</title>
<style>
body {
margin: 0;
background: radial-gradient(#fff, #141415 65%);
}
#main {
width: 100vw;
height: 100vh;
position: relative;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 1px;
a {
width: 100%;
height: 100%;
position: absolute;
background: #141415;
color: #fff;
font-size: 10vh;
text-align: center;
line-height: 49.5vh;
text-decoration: none;
font-family: Arial;
font-weight: 500;
transition: .2s;
&:hover {
background: #242425;
}
}
a.grey {
color: #777;
&:hover {
background: #141415;
}
}
#n5 { grid-area: 1 / 1 / 2 / 3; }
#h { grid-area: 2 / 1 / 3 / 2; }
#ah { grid-area: 2 / 2 / 3 / 3; }
}
#notice {
position: absolute;
top: 1vh;
right: 1vh;
margin: 0;
padding: 1.75vh 1.75vh 2vh 1.75vh;
box-sizing: border-box;
background: rgba(245, 245, 255, 0.075);
border: .5vh solid rgba(255, 255, 255, 0.15);
border-radius: 1vh;
backdrop-filter: blur(10px);
box-sizing: border-box;
color: #fff;
text-decoration: none;
font-family: Arial;
font-weight: 500;
font-size: 2vh;
line-height: 2vh;
text-align: center;
z-index: 10;
transition: .2s;
}
</style>
</head>
<body>
<div id="main">
<a id="n5" href="https://nat5.bearsden.academy">N5</a>
<a id="h" href="https://higher.bearsden.academy">H</a>
<a id="ah" class="grey" href="">AH</a>
</div>
<h1 id="notice">Moving to sqa.my on Apr 14th</h1>
<script>fetch('https://qwk.pythonanywhere.com/l/sqa').catch(() => {});</script>
</body>
</html>