mirror of
https://github.com/AJMicke/KickerELO.git
synced 2026-03-12 05:51:05 +01:00
Working entry of results
This commit is contained in:
23
src/main/frontend/index.html
Normal file
23
src/main/frontend/index.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
This file is auto-generated by Vaadin.
|
||||
-->
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<style>
|
||||
body, #outlet {
|
||||
height: 100vh;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
<!-- index.ts is included here automatically (either by the dev server or during the build) -->
|
||||
</head>
|
||||
<body>
|
||||
<!-- This outlet div is where the views are rendered -->
|
||||
<div id="outlet"></div>
|
||||
</body>
|
||||
</html>
|
||||
19
src/main/frontend/themes/my-theme/styles.css
Normal file
19
src/main/frontend/themes/my-theme/styles.css
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
CSS styling examples for the Vaadin app.
|
||||
|
||||
Visit https://vaadin.com/docs/styling/application-theme/ for more information.
|
||||
*/
|
||||
|
||||
/* Example: CSS class name to center align the content . */
|
||||
.centered-content {
|
||||
margin: 0 auto;
|
||||
max-width: 250px;
|
||||
}
|
||||
|
||||
/* Example: the style is applied only to the textfields which have the `bordered` class name. */
|
||||
vaadin-text-field.bordered::part(input-field) {
|
||||
box-shadow: inset 0 0 0 1px var(--lumo-contrast-30pct);
|
||||
background-color: var(--lumo-base-color);
|
||||
}
|
||||
|
||||
|
||||
3
src/main/frontend/themes/my-theme/theme.json
Normal file
3
src/main/frontend/themes/my-theme/theme.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"lumoImports" : [ "typography", "color", "spacing", "badge", "utility" ]
|
||||
}
|
||||
Reference in New Issue
Block a user