dragndrop_wasm_yew/index.html
2022-02-06 15:28:26 +01:00

28 lines
No EOL
499 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Spiegel</title>
<style>
html {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: rgb(20, 20, 104);
}
.drop-zone {
border: 4px dashed rgb(17, 122, 184);
width: 200px;
height: 100px;
background-color: rgb(202, 202, 238);
}
p {
display: table;
margin: 0 auto;
transform: translateY(50%);
}
</style>
</head>
</html>