mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
48 lines
1.1 KiB
HTML
48 lines
1.1 KiB
HTML
<html>
|
|
<head>
|
|
<title>Migration</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
|
|
<style>
|
|
header {
|
|
background-color: green;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
background-color: #345688;
|
|
}
|
|
|
|
button {
|
|
height: 40px;
|
|
width: 40 px;
|
|
}
|
|
|
|
.list-item {
|
|
font-size: 32 px;
|
|
background-color: white;
|
|
height: 60px;
|
|
display: flex;
|
|
alirgn-items: center;
|
|
right: 16px;
|
|
bottom: 60px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Migration Apis</h1>
|
|
</header>
|
|
<div class="list-item">
|
|
<input type="checkbox"> Element 1
|
|
</div>
|
|
<div class="list-item">
|
|
<input type="checkbox"> Element 2
|
|
</div>
|
|
<button>
|
|
+
|
|
</button>
|
|
</body>
|
|
</html>
|