diff options
author | Minteck <46352972+Minteck@users.noreply.github.com> | 2021-07-09 00:37:48 +0200 |
---|---|---|
committer | Minteck <46352972+Minteck@users.noreply.github.com> | 2021-07-09 00:37:48 +0200 |
commit | 8886d5111aa4ae75f54f46c93f09fa7548979969 (patch) | |
tree | 51ca4a81263486f1298e1262537703b0470fa4e6 /index.html | |
parent | a69a90e2f5970efb23dba5ca900e9624b35cfa36 (diff) | |
download | kartik-client-8886d5111aa4ae75f54f46c93f09fa7548979969.tar.gz kartik-client-8886d5111aa4ae75f54f46c93f09fa7548979969.tar.bz2 kartik-client-8886d5111aa4ae75f54f46c93f09fa7548979969.zip |
Fixes
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -40,6 +40,19 @@ } } </style> + <div id="notification" style="position: fixed; z-index: 9999; background: rgba(0, 0, 0, 0.5); color: white; padding: 10px; width: 256px; right: -300px; top: 20px; opacity: 0; border-radius: 10px; backdrop-filter: blur(10px); transition: right 400ms linear 0s, opacity 400ms linear 0s;"> + <span id="notification-title" style=" + font-weight: bold; + text-align: left; + display: block; + padding-bottom: 5px; +">hello</span> + <span id="notification-message" style=" + display: block; + max-width: 256px; + text-align: left; +">goodbye</span> + </div> <div id="message" style=" position: fixed; display: none; @@ -92,6 +105,7 @@ <script src="./views/script/core_music.js"></script> <script src="./views/script/core_viewer.js"></script> <script src="./views/script/core_stats.js"></script> + <script src="./views/script/core_notification.js"></script> <script>info("MainWindow", "Main container up!");if (native){require('@electron/remote').getCurrentWindow().log(" * View loaded, Kartik is now up and running!");}</script> </body> </html> |