PadApp/html/index.html
jusax23 ba4c030293
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
led config start
2022-12-19 23:03:59 +01:00

34 lines
No EOL
808 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
@import url(css/comfortaa.css);
html,body{
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
#stear{
height: 100%;
width: 100%;
top: 0;
left:0;
}
*{
font-family: 'Comfortaa', cursive;
font-size: 1.25rem;
transition: background-color 1000ms linear, fill 1000ms linear;
}
</style>
</head>
<body>
<div id="stear"></div>
<script src="index.js"></script>
</body>
</html>