-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (73 loc) · 1.88 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coop</title>
<!-- Wrapper pour fetch mettant à dispo l'objet api -->
<script src="/fetch.js"></script>
<!-- intégration du framework CSS BULMA avec Font Awesome -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
font-family: 'Poppins', sans-serif;
}
.navbar-item img {
max-height: 40px;
}
.button {
min-width: 130px;
height: 40px;
color: #fff;
padding: 5px 10px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
outline: none;
border-radius: 5px;
border: 2px solid #adb5bd;
background: #adb5bd;
}
.button:hover {
background: #fff;
color: #adb5bd
}
.button.is-danger{
background-color: #f14668;
border: 2px solid #f14668;
}
.button.is-danger:hover{
background-color: white;
color: #f14668;
border-color: #f14668;
}
.button.is-primary{
background-color: #00d1b2;
border: 2px solid #00d1b2;
}
.button.is-primary:hover{
background-color: white;
color: #00d1b2;
border-color: #00d1b2;
}
.button.is-info{
background-color: #3273DC;
border: 2px solid #3273DC;
}
.button.is-info:hover{
background-color: white;
color: #3273DC;
border-color: #3273DC;
}
</style>
</head>
<body >
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>