47 lines
1.1 KiB
HTML
47 lines
1.1 KiB
HTML
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Rosetta</title>
|
|
<style>
|
|
.pulse {
|
|
animation: pulse 1s infinite;
|
|
}
|
|
@keyframes pulse {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
50% {
|
|
transform: scale(1.15);
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
</style>
|
|
<style>
|
|
*{
|
|
padding: 0px;
|
|
margin: 0px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
list-style: none;
|
|
box-sizing: border-box;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
body{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background: transparent;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img src="R.png" width="100" height="100" class="pulse">
|
|
</body>
|
|
</html> |