This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (55 loc) · 1.83 KB
/
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
<!DOCTYPE html>
<html>
<head>
<title>la Carte de la francophonie en Colombie-Britannique</title>
<!-- SMK BOOTSTRAP - - - - - - - -->
<script src="./node_modules/@bcgov/smk/dist/smk.js"></script>
<script src="./smk-init.js"></script>
<link rel="stylesheet" type="text/css" href="./assets/style.css"/>
<!-- - - - - - - - - - - - - - - -->
<style>
#header {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 70px;
border-bottom: 2px solid #fcba19;
background-color: #036;
font-family: Helvetica,Arial,sans-serif;
display: flex;
justify-content: flex-start;
align-items: center;
}
#header img {
margin-left: 10px;
margin-bottom: 5px;
}
#header-title {
color: white;
margin-left: 20px;
display: flex;
flex-direction: column;
justify-content:center;
align-items: flex-start;
font-size: 30px;
}
#smk-map-frame {
position: absolute;
top: 72px;
left: 0;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="header">
<img src="./assets/BC_Francais_H_RGB_rev.png" height="85">
<div id="header-title">la Carte de la francophonie en Colombie-Britannique</div>
</div>
<div id="smk-map-frame"></div>
</body>
</html>