-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (104 loc) · 2.97 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pierre Feuille Ciseaux</title>
<script src="jzon.json"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<style>
.desc{
display: flex;
}
.smallfont{
font-size: 10px;
}
body{
background: url('./images/background.png') ;
background-size: cover;
background-repeat: no-repeat;
}
.container{
background: #524E7D;
min-height: 100vh;
box-shadow: 0 0 50px #524EB7;
}
#img{
width: 150px;
height: 250px;
margin: auto;
}
#articleDisplay{
display: flex;
flex-wrap: wrap;
}
.card{
margin: 10px;
}
.card h5{
font-size: 12px;
}
#goCart{
font-size: 10px;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
.smallSide{
width: 20vw;
height: 100vh;
overflow-y: scroll;
margin-left: 80vw;
position: fixed;
background: white;
box-shadow: 0 0 50px white;
float: right;
display: flex;
align-self: flex-end;
}
.hide{
animation: fadeIn 2s reverse;
opacity: 0;
}
.show{
animation: fadeIn 2s;
opacity: 0;
}
</style>
</head>
<body>
<div class="smallSide">
<table class="table">
<thead>
<tr>
<th scope="col" id="total">Vos articles</th>
</tr>
</thead>
<tbody id="myCart">
<tr>
<td scope="row">
<div class="card">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text smallfont">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
<p class="card-text"><small>Price</small></p>
<p> <small>number</small> </p>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="container">
<div class="col-12 ml-5" id="articleDisplay">
</div>
</div>
<script src="./script1.js">
</script>
<script src="./script.js">
</script>
</body>
</html>