2023-05-18 12:53:36 -06:00
|
|
|
<!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>gostart</title>
|
|
|
|
<style>
|
|
|
|
html {
|
|
|
|
background-color: #ffffea;
|
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
border-radius: 10px;
|
|
|
|
border: 1px solid black;
|
|
|
|
list-style-type: none;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon img {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
gap: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col {
|
|
|
|
border: 1px solid black;
|
|
|
|
border-radius: 10px;
|
2023-06-26 08:52:42 -06:00
|
|
|
box-shadow: 5px 5px 5px -5px;
|
2023-05-18 12:53:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-grid {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(6, 1fr);
|
|
|
|
gap: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon span {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
right: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
padding: 5px !important;
|
|
|
|
border-bottom: 1px solid black;
|
|
|
|
border-radius: 10px 10px 0px 0px;
|
|
|
|
background-color: #dedeff;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-left {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bar-right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container {
|
|
|
|
display: grid;
|
2024-04-18 08:03:07 -06:00
|
|
|
grid-template-columns: repeat(4, 1fr);
|
2023-05-18 12:53:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-content {
|
|
|
|
}
|
|
|
|
|
|
|
|
.error {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
2024-04-18 08:03:07 -06:00
|
|
|
table {
|
|
|
|
border: 1px solid #dedeff;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr td {
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table th {
|
|
|
|
background-color: #dedeff;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr:nth-child(even) {
|
|
|
|
background-color: #f6f8f9;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr:nth-child(odd) {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
2023-05-18 12:53:36 -06:00
|
|
|
header {
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
padding: 5px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li span {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2023-07-25 07:20:09 -06:00
|
|
|
|
|
|
|
footer {
|
|
|
|
}
|
2023-05-18 12:53:36 -06:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="main"></div>
|
|
|
|
|
2023-06-12 08:02:09 -06:00
|
|
|
<script src="main.min.js"></script>
|
2023-05-18 12:53:36 -06:00
|
|
|
<script>
|
|
|
|
var app = Elm.Main.init({
|
|
|
|
node: document.getElementById('main')
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|