mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2026-02-27 16:11:09 +00:00
44 lines
1.0 KiB
HTML
44 lines
1.0 KiB
HTML
<!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>
|