Initial commit
This commit is contained in:
6
webApp/src/commonMain/kotlin/main.kt
Normal file
6
webApp/src/commonMain/kotlin/main.kt
Normal file
@@ -0,0 +1,6 @@
|
||||
import androidx.compose.ui.ExperimentalComposeUiApi
|
||||
import androidx.compose.ui.window.ComposeViewport
|
||||
import org.shahondin1624.App
|
||||
|
||||
@OptIn(ExperimentalComposeUiApi::class)
|
||||
fun main() = ComposeViewport { App() }
|
||||
BIN
webApp/src/commonMain/resources/android-chrome-192x192.png
Normal file
BIN
webApp/src/commonMain/resources/android-chrome-192x192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
BIN
webApp/src/commonMain/resources/android-chrome-512x512.png
Normal file
BIN
webApp/src/commonMain/resources/android-chrome-512x512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
BIN
webApp/src/commonMain/resources/apple-touch-icon.png
Normal file
BIN
webApp/src/commonMain/resources/apple-touch-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.3 KiB |
BIN
webApp/src/commonMain/resources/favicon-16x16.png
Normal file
BIN
webApp/src/commonMain/resources/favicon-16x16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 486 B |
BIN
webApp/src/commonMain/resources/favicon-32x32.png
Normal file
BIN
webApp/src/commonMain/resources/favicon-32x32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
BIN
webApp/src/commonMain/resources/favicon.ico
Normal file
BIN
webApp/src/commonMain/resources/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
31
webApp/src/commonMain/resources/index.html
Normal file
31
webApp/src/commonMain/resources/index.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
|
||||
<link rel="manifest" href="./manifest.json">
|
||||
<title>ShadowrunCharSheet</title>
|
||||
<style>
|
||||
html,
|
||||
body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="text-align: center; align-content: center">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 50 50" role="presentation">
|
||||
<circle cx="25" cy="25" r="20" stroke="#ccc" stroke-width="4" fill="none"/>
|
||||
<circle cx="25" cy="25" r="20" stroke="#333" stroke-width="4" fill="none" stroke-linecap="round" stroke-dasharray="90 125">
|
||||
<animateTransform attributeName="transform" type="rotate" from="0 25 25" to="360 25 25" dur="1s" repeatCount="indefinite"/>
|
||||
</circle>
|
||||
</svg>
|
||||
</body>
|
||||
<script src="webApp.js"></script>
|
||||
</html>
|
||||
19
webApp/src/commonMain/resources/manifest.json
Normal file
19
webApp/src/commonMain/resources/manifest.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "ShadowrunCharSheet",
|
||||
"short_name": "ShadowrunCharSheet",
|
||||
"icons": [
|
||||
{
|
||||
"src": "./android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "./android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
||||
Reference in New Issue
Block a user