Rename main folders and write sql backend adaptor
This commit is contained in:
parent
1d34f8e06d
commit
fdc58b428b
212 changed files with 3577 additions and 4775 deletions
25
browser-extension/manifest.json
Normal file
25
browser-extension/manifest.json
Normal 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"
|
||||
}
|
||||
}
|
||||
59
browser-extension/popup.html
Normal file
59
browser-extension/popup.html
Normal 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>
|
||||
BIN
browser-extension/res/icon128.png
Normal file
BIN
browser-extension/res/icon128.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.3 KiB |
BIN
browser-extension/res/icon16.png
Normal file
BIN
browser-extension/res/icon16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 416 B |
BIN
browser-extension/res/icon32.png
Normal file
BIN
browser-extension/res/icon32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 841 B |
BIN
browser-extension/res/icon48.png
Normal file
BIN
browser-extension/res/icon48.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
Loading…
Add table
Add a link
Reference in a new issue