diff --git a/webroot/assets/mark.svg b/webroot/assets/mark.svg new file mode 100644 index 0000000..4c38bec --- /dev/null +++ b/webroot/assets/mark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/webroot/css/fonts.css b/webroot/css/fonts.css new file mode 100644 index 0000000..560cf65 --- /dev/null +++ b/webroot/css/fonts.css @@ -0,0 +1,9 @@ +@font-face { + font-family: "ProductSans Regular"; + src: url("../fonts/ProductSans-Regular.ttf"); +} + +@font-face { + font-family: "ProductSans Italic"; + src: url("../fonts/ProductSans-Regular.ttf"); +} \ No newline at end of file diff --git a/webroot/css/index.css b/webroot/css/index.css index 38234fd..a30ffc3 100644 --- a/webroot/css/index.css +++ b/webroot/css/index.css @@ -1,7 +1,7 @@ * { background-color: #181c20; color: #fff; - font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif + font-family: 'ProductSans Regular', 'ProductSans Italic', sans-serif } body { diff --git a/webroot/fonts/ProductSans-Italic.ttf b/webroot/fonts/ProductSans-Italic.ttf new file mode 100644 index 0000000..5b44037 Binary files /dev/null and b/webroot/fonts/ProductSans-Italic.ttf differ diff --git a/webroot/fonts/ProductSans-Regular.ttf b/webroot/fonts/ProductSans-Regular.ttf new file mode 100644 index 0000000..e2c69c3 Binary files /dev/null and b/webroot/fonts/ProductSans-Regular.ttf differ diff --git a/webroot/index.html b/webroot/index.html index dcecaa9..0b31cc8 100644 --- a/webroot/index.html +++ b/webroot/index.html @@ -5,7 +5,7 @@ - + @@ -14,10 +14,10 @@
-
- +
+
-
+
ReZygisk is at an unknown state!
diff --git a/webroot/js/main.js b/webroot/js/main.js index 7b73aec..9648cc2 100644 --- a/webroot/js/main.js +++ b/webroot/js/main.js @@ -3,9 +3,11 @@ import { exec, toast, fullScreen } from './kernelsu.js'; (async () => { fullScreen(true) + const rezygisk_icon_state = document.getElementById('rezygisk_icon_state') const rezygisk_state = document.getElementById('rezygisk_state') /* TODO: Implement rezygisk state */ rezygisk_state.innerHTML = 'ReZygisk is functioning!' + rezygisk_icon_state.innerHTML = '' const code_version = document.getElementById('version_code') const root_impl = document.getElementById('root_impl')