-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (58 loc) · 1.49 KB
/
index.html
File metadata and controls
77 lines (58 loc) · 1.49 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
<style>
html,
body {
height: 100%;
margin: 0;
}
a{
text-decoration: none;
color: inherit;
}
.head{
background: white;
height: 30%;
overflow: hidden;
}
.cards_list{
overflow: auto;
height: 70%;
}
.model_card{
background: cornflowerblue;
height: 10rem;
margin: 1rem;
border-radius: 1rem;
padding: 1rem;
}
.head_title{
margin: 1rem;
display: flex;
align-items: center;
}
.icon {
width: 32px;
height: 32px;
margin-right: 10px;
}
</style>
</head>
<body>
<div class="head">
<div class="head_title">
<svg class="icon" viewBox="0 0 8 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 13L1 7L7 1" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span href="index copy.html">回忆画廊</span>
</div>
</div>
<div class="cards_list"></div>
<script type="module" src="/index.js"></script>
</body>
</html>