blob: 515442bfac863eb530e4c13f10e18e8a9d86404d (
plain) (
blame)
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
|
body {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
margin: 0;
display: flex;
place-items: center;
place-content: center;
min-width: 100vw;
min-height: 100vh;
background-color: darksalmon;
}
.hint-1 {
top: 0;
left: 0;
}
.hint-2 {
top: 21.25%;
left: 0;
}
.hint-3 {
top: 42.5%;
left: 0;
}
.hint-4 {
top: 63.75%;
left: 0;
}
.hint-5 {
top: 85%;
left: 0;
}
.hint-6 {
top: 0;
left: 90%;
}
.hint-7 {
top: 25%;
left: 90%;
}
.hint-8 {
top: 50%;
left: 90%;
}
.hint-9 {
top: 75%;
left: 90%;
}
|