-
Notifications
You must be signed in to change notification settings - Fork 0
/
intro.xhtml
62 lines (62 loc) · 1.73 KB
/
intro.xhtml
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Volunteers Intro Page</title>
<style type="text/css">
@keyframes rainbow {
from { background-position: 0% }
to { background-position: 100% }
}
h1 {
background-clip: text;
color: #0000;
text-align: center;
font-style: italic;
font-size: clamp(3rem, 12dvh, 6rem);
font-weight: normal;
margin-top: 10dvh;
background-image: linear-gradient(
to right,
var(--red),
var(--orange),
var(--yellow),
var(--green),
var(--blue),
var(--indigo),
var(--violet),
var(--indigo),
var(--blue),
var(--green),
var(--yellow),
var(--orange)
);
background-size: 200%;
animation: rainbow 2s linear infinite;
}
#greetings {
list-style: none;
position: relative;
height: 75svh;
}
#greetings > li {
position: absolute;
color: var(--accent);
font-size: clamp(2rem, 7dvh, 5rem);
width: 14ch;
font-weight: bold;
text-align: center;
}
</style>
</head>
<body>
<h1>Peace Corps Mauritania 2003-05</h1>
<ul id="greetings">
<li id="french" style="top: 10%; left: 0%">Bonjour</li>
<li id="wolof" style="top: 20%; left: 13%">Nanga Def</li>
<li id="hassaniya" style="top: 30%; left: 26%">Iyaak Labaas</li>
<li id="sonike" style="top: 40%; left: 39%">An Moxo</li>
<li id="pulaar" style="top: 50%; left: 52%">No M’Bad-da</li>
<li id="english" style="top: 60%; left: 65%">Howdy</li>
</ul>
</body>
</html>