Rename main folders and write sql backend adaptor

This commit is contained in:
Ben Grant 2023-05-11 17:04:17 +10:00
parent 1d34f8e06d
commit fdc58b428b
212 changed files with 3577 additions and 4775 deletions

View file

@ -0,0 +1,25 @@
{
"name": "Crab Fit",
"description": "Enter your availability to find a time that works for everyone!",
"version": "1.2",
"manifest_version": 2,
"author": "Ben Grant",
"homepage_url": "https://crab.fit",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "res/icon16.png",
"32": "res/icon32.png",
"48": "res/icon48.png",
"128": "res/icon128.png"
}
},
"icons": {
"16": "res/icon16.png",
"32": "res/icon32.png",
"48": "res/icon48.png",
"128": "res/icon128.png"
}
}

View file

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
width: 360px;
height: 500px;
margin: 0;
}
@keyframes load {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
#loader {
position: absolute;
top: 0;
left: 0;
width: 360px;
height: 500px;
background-color: #FFFFFF;
z-index: -1;
}
#loader::after {
content: '';
position: absolute;
top: calc(50% - 15px);
left: calc(50% - 15px);
height: 24px;
width: 24px;
border: 3px solid #F79E00;
border-left-color: transparent;
border-radius: 100px;
animation: load .5s linear infinite;
}
@media (prefers-color-scheme: dark) {
#loader {
background-color: #111111;
}
}
iframe {
height: 100%;
width: 100%;
border: 0;
}
</style>
</head>
<body>
<div id="loader"></div>
<iframe src="https://crab.fit/create" allow="clipboard-write"></iframe>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 416 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 841 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB