-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove docker for now and build dist
- Loading branch information
Alexandre Hanot
committed
Nov 30, 2023
1 parent
f2665f0
commit ea89672
Showing
9 changed files
with
1,020 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
@import url("https://fonts.googleapis.com/css2?family=Caveat&family=VT323&display=swap"); | ||
|
||
main { | ||
display:flex; | ||
flex-direction: column; | ||
height: 100%; | ||
margin: auto; | ||
max-width: 700px; | ||
} | ||
|
||
.countdown { | ||
font-family: "VT323", monospace; | ||
font-size: 4rem; | ||
} | ||
|
||
.sticky-note { | ||
align-items: center; | ||
background-color: #f5f6f8; | ||
/* border-radius: 10px; */ | ||
box-shadow: | ||
/* The top layer shadow */ | ||
0 1px 1px rgba(0,0,0,0.15), | ||
/* The second layer */ | ||
0 10px 0 -5px #fff9b1, | ||
/* The second layer shadow */ | ||
0 10px 1px -4px rgba(0,0,0,0.15), | ||
/* The third layer */ | ||
0 20px 0 -10px #fff9b1, | ||
/* The third layer shadow */ | ||
0 20px 1px -9px rgba(0,0,0,0.15); | ||
display: flex; | ||
flex-grow: 1; | ||
font-family: "Caveat", cursive; | ||
font-size: 2rem; | ||
justify-content: center; | ||
padding: 20px; | ||
margin-bottom: 40px; | ||
} | ||
|
||
|
||
/* https://uploads-us-west-2.insided.com/miro-us/attachment/27fae09a-d57c-46fa-8b02-37399c796235.jpg */ | ||
.bg-white { background-color: #f5f6f8; } | ||
.bg-yellow { background-color: #fff9b1; } | ||
.bg-apple-green { background-color: #daf7a1; } | ||
.bg-orange { background-color: #ffc000; } | ||
.bg-lime-green { background-color: #c9df56; } | ||
.bg-peach { background-color: #ff9d48; } | ||
.bg-green { background-color: #b6d7a9; } | ||
.bg-red { background-color: #f16c7f; } | ||
.bg-teal { background-color: #77ccc7; } | ||
.bg-pink { background-color: #eca2c4; } | ||
.bg-cyan { background-color: #6ed8fa; } | ||
.bg-light-pink { background-color: #ffcee0; } | ||
.bg-light-blue { background-color: #b1d3f6; } | ||
.bg-magenta { background-color: #b485dc; } | ||
.bg-indigo { background-color: #8ca0ff; } | ||
|
||
/* Long Press Animation */ | ||
@keyframes grow { | ||
0% { | ||
transform: scale(1); | ||
} | ||
100% { | ||
transform: scale(1.75); | ||
} | ||
} | ||
|
||
.longpress { | ||
/* duration | easing-function | delay | iteration-count | direction | fill-mode | play-state | name */ | ||
animation: 2s ease forwards grow; | ||
} | ||
|
||
.longpress-background { | ||
align-items: center; | ||
background-color: white; | ||
clip-path: inset(100% 0% 0% 0%); | ||
display: flex; | ||
font-size: 24px; | ||
height: 100%; | ||
justify-content: center; | ||
position: absolute; | ||
width: 100%; | ||
} | ||
|
||
@keyframes fill-bottom-to-up { | ||
0% { | ||
clip-path: inset(100% 0% 0% 0%); | ||
} | ||
100% { | ||
clip-path: inset(0% 0% 0% 0%); | ||
} | ||
} | ||
|
||
.longpress .longpress-background { | ||
animation: 2s ease forwards fill-bottom-to-up; | ||
} | ||
|
||
ion-button.longpress-button { | ||
--box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12); | ||
} | ||
|
||
ion-button.longpress-button { | ||
text-transform: none; | ||
/* padding: 14px 2em; */ | ||
} | ||
|
||
.longpress-success { | ||
align-items: center; | ||
background-color: white; | ||
bottom: 0; | ||
clip-path: inset(0% 100% 0% 0%); | ||
display: flex; | ||
font-size: 24px; | ||
justify-content: center; | ||
left: 0; | ||
margin-bottom: calc(-1 * var(--padding-bottom) - 1px); | ||
margin-inline-end: calc(-1 * var(--padding-end)); | ||
margin-inline-start: calc(-1 * var(--padding-start)); | ||
margin-top: calc(-1 * var(--padding-top) - 1px); | ||
position: absolute; | ||
right: 0; | ||
top: 0; | ||
} | ||
|
||
@keyframes fill-left-to-right { | ||
0% { | ||
clip-path: inset(0% 100% 0% 0%); | ||
} | ||
100% { | ||
clip-path: inset(0% 0% 0% 0%); | ||
} | ||
} | ||
|
||
.longpress .longpress-success { | ||
animation: 2s ease forwards fill-left-to-right; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html><html><head> | ||
<meta charset="utf-8"> | ||
<title>Task</title> | ||
|
||
<!-- Ionic --> | ||
<script type="module" src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js"></script> | ||
<script nomodule="" src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.js"></script> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ionic/core/css/ionic.bundle.css"> | ||
|
||
<!-- WebApp --> | ||
<meta name="color-scheme" content="light dark"> | ||
<meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> | ||
<meta name="format-detection" content="telephone=no"> | ||
<meta name="msapplication-tap-highlight" content="no"> | ||
|
||
<link rel="manifest" href="/manifest.json"> | ||
|
||
<link rel="shortcut icon" type="image/png" href="/favicon.png"> | ||
|
||
<!-- Add to homescreen for ios --> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<meta name="apple-mobile-web-app-title" content="Ionic App"> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black"> | ||
|
||
<!-- Assets --> | ||
<link rel="stylesheet" href="/index-d37b742978c3b367.css"> | ||
|
||
<link rel="icon" href="/favicon-7f688a3f3f1fb84b.png"> | ||
|
||
<link rel="preload" href="/webapp-438b0bfb59fbde17_bg.wasm" as="fetch" type="application/wasm" crossorigin=""> | ||
<link rel="modulepreload" href="/webapp-438b0bfb59fbde17.js"></head> | ||
<body> | ||
|
||
<script type="module">import init from '/webapp-438b0bfb59fbde17.js';init('/webapp-438b0bfb59fbde17_bg.wasm');</script></body></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"short_name": "Ionic App", | ||
"name": "My Ionic App", | ||
"icons": [ | ||
{ | ||
"src": "assets/icon/favicon.png", | ||
"sizes": "64x64 32x32 24x24 16x16", | ||
"type": "image/x-icon" | ||
}, | ||
{ | ||
"src": "assets/icon/icon.png", | ||
"type": "image/png", | ||
"sizes": "512x512", | ||
"purpose": "maskable" | ||
} | ||
], | ||
"start_url": ".", | ||
"display": "standalone", | ||
"theme_color": "#ffffff", | ||
"background_color": "#ffffff" | ||
} |
Oops, something went wrong.