-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (93 loc) · 3.85 KB
/
index.html
File metadata and controls
101 lines (93 loc) · 3.85 KB
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
<!--
.....
.:. :! .~7YPB##&&&##BPY7^. ^~ .::
. .JBP7 ^BJ ..::..:?P&@@@@@@@@@@@@@@@@@&G?::.. :G? .!Y5~
:?Y?J#@?~&#JGBGP55G@@@&&##BBGGPP555B&#&P7?7!!~^^^~!!!7???JY~ !7777?J5PJ.
~PGY?5?!J7J?7~::P#BG~~!!!7????JYY.:77^ ?BB##BB&@@@&PG@@@@#..~^^!J5PJ~.
.!Y7.?YYY55PPGGB5 ~77 :#@@@BYB@&&@5 ^77.~@@@@Y J@@@@7 5@@@@^ .^7JJ7:
~?7?J! !PPPPPP&@@@@^ !7^ G@@@@Y!J55PJ 7BB^.#@@@B ^@@@@5 7@@@@? ?Y?~^:
^PG!: ~&&&@BP#@@@@7 G&P !BGGP55@@@@@^:&@5 P@@@@^.#@@@#.^@@@@P .~!J7:.
..^5^.#@@@B ^&@@@P JBG:^BBB#G!Y@@@@? 5B5 7@&&&? ?#BGG~ ?5YJJ.^PYJYY7
. P@@@@BP&@@@B.~PG7 5BGGPPP5YJJ?.7GGY^!7777~~^ .!?! :~PP7G&: .
:YJ???!!!~^~^:5PP?::....::^^~~!?YYJJ?7777!7!^:^^^~^. G!G@7.J^
:.JY: :PPP55P7:~~~~!~.7?JJYJ.YPGGGB^Y#&&@@7 YP: B:^&5
!. ~5Y: ?55557 P@@&@@7J@@#@@Y?@&5@@P!@@7P#P !P? :#. !^
^~5Y: ?55Y ^BB!G@G^&@7J@#:?Y?J@&^B@&JY5:.YY. JG
G7 !PJ^^?! Y5PP@@~5@G^&@7J@&###J~BGB@@G ?Y^ .#!
~#. !5J^ ?@@555?~@@~P@B^&@??5J:5P!?@@^:?^ JG
55 !~.#@57#B:B@#Y@@!P@@G@@?Y@@&@@Y ^ ^#^
.B? Y@@&@@J!#BBBGJ:55YYJ? !7!!!~. .B?
^&5^ ~~^^::.~77??JJYYY5PPPP5J7: 7B5
!@#?~: .^7J5PGBBBGP5J7~: .:7Y@G
:G@@&G!. ^J#@@&?
^77!^. .:~77!.
You really like hurting people, don't you ?
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ASM 2025</title>
<meta name="description" content="You really like hurting people, don't you ?" />
<link rel="icon" type="image/png" href="assets/images/logo.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
<style>
html
{
width: 100%;
min-height: 100%;
font-family: 'VT323', monospace;
color: white;
}
body
{
min-height: 100%;
margin: 0;
background-color: #710B94;
background: linear-gradient(
rgba(181, 112, 112, 0.6),
rgba(112, 122, 181, 0.6)
), url("assets/images/background.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
text-align: center;
overflow: hidden;
}
.center-block
{
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
align-items: center;
}
.logo img
{
min-width: 350px;
width: 65%;
}
h3
{
margin-top: -10%; /* Stylé les ASM */
font-size: 70px;
}
</style>
</head>
<body>
<div class="center-block">
<div class="logo">
<img src="assets/images/logo.png" />
</div>
<h3>You really like hurting people, don't you ?</h3>
</div>
</body>
</html>