mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
30 lines
570 B
HTML
30 lines
570 B
HTML
<!DOCTYPE html>
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
- http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
border: 0px;
|
|
}
|
|
div {
|
|
background: url('circle-small.svg');
|
|
background-size: 40px 40px;
|
|
background-repeat: repeat;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
border: 0px;
|
|
width: 80px;
|
|
height: 80px;
|
|
transform: scale(2.0);
|
|
transform-origin: 0 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|