-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
80 lines (71 loc) · 1.57 KB
/
landing.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
<html>
<head>
<title>Montpelier Complete Streets</title>
<script src="https://kit.fontawesome.com/42364daefc.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<style>
#CenterElements
{
position: absolute;
transform: translate(-50%, -50%);
left: 50%;
top: 50%;
}
#CenterTitle
{
font-size: 48px;
font-family: 'Poppins', sans-serif;
}
#CenterLinks
{
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
font-size: 24px;
}
#CenterText
{
font-family: 'Poppins', sans-serif;
}
a
{
text-decoration: none;
}
a.CenterLink
{
color: #93a1a1;
transition: all .4s
}
a.CenterLink:hover
{
color: rgb(255, 255, 255);
transform: scale(1.3);
}
a.SubtitleLink
{
transition: all .2s;
color: rgb(200, 200, 200);
}
a.SubtitleLink:hover
{
color: rgb(255, 255, 255);
}
body
{
color: #93a1a1;
background-color: #4f4f4fff;
margin: 1;
}
</style>
</head>
<body>
<div id="CenterElements">
<div id="CenterTitle">Montpelier Complete Streets</div>
<div id="CenterLinks">
<a class="CenterLink" href="https://www.montpelier-vt.org/907/Complete-Streets-Committee" title="City" target="_blank"><i class="fa fa-building"></i></a>
<a class="CenterLink" href="https://www.instagram.com/montpelieralive/" title="Instagram" target="_blank"><i class="fas fa-camera-retro"></i></a>
</div>
</div>
</body>
</html>