chore(ui.resources): play result grade icons

This commit is contained in:
2025-11-15 13:07:46 +08:00
parent 65dab51734
commit a2148c7d24
17 changed files with 1909 additions and 0 deletions

View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<title>Grade Previews</title>
<meta charset="utf-8" />
<style>
.display {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
img {
width: 150px;
height: 150px;
}
</style>
</head>
<body>
<div id="main" style="display: flex; flex-direction: column">
<div class="gallery">
<img src="./ex-plus.svg" />
<img src="./ex.svg" />
<img src="./aa.svg" />
<img src="./a.svg" />
<img src="./b.svg" />
<img src="./c.svg" />
<img src="./d.svg" />
</div>
<div class="gallery" style="background-color: #282828">
<img src="./ex-plus-dark.svg" />
<img src="./ex-dark.svg" />
<img src="./aa-dark.svg" />
<img src="./a-dark.svg" />
<img src="./b-dark.svg" />
<img src="./c-dark.svg" />
<img src="./d-dark.svg" />
</div>
</div>
</body>
</html>