diff options
| author | s1n <[email protected]> | 2019-09-26 17:03:43 -0700 |
|---|---|---|
| committer | s1n <[email protected]> | 2019-09-26 17:03:43 -0700 |
| commit | a6bc844ca1dedb2cd4c3521f9dc604030a332735 (patch) | |
| tree | f9744eab76e009fa579459e8a175d00fba822c09 | |
| parent | remove alert box (diff) | |
| download | s1n.pw-admin-a6bc844ca1dedb2cd4c3521f9dc604030a332735.tar.xz s1n.pw-admin-a6bc844ca1dedb2cd4c3521f9dc604030a332735.zip | |
add info
| -rw-r--r-- | performance-stats/css/main.css | 5 | ||||
| -rw-r--r-- | performance-stats/index.html | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/performance-stats/css/main.css b/performance-stats/css/main.css new file mode 100644 index 0000000..ee630d9 --- /dev/null +++ b/performance-stats/css/main.css @@ -0,0 +1,5 @@ +.test { + position: absolute; + top: 5px; + left: 150px; +}
\ No newline at end of file diff --git a/performance-stats/index.html b/performance-stats/index.html index 8a10d54..918c7cb 100644 --- a/performance-stats/index.html +++ b/performance-stats/index.html @@ -7,6 +7,7 @@ <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>s1nical - Performance Stats</title> <!-- CSS Links --> + <link rel="stylesheet" href="/performance-stats/css/main.css"> <link rel="stylesheet" href="/css/no-text-highlighting.css"> <!-- External Libraries --> <script src="https://cdnjs.cloudflare.com/ajax/libs/stats.js/r16/Stats.min.js"></script> @@ -16,6 +17,8 @@ <body> <!-- Visable Script Links --> <script src="/js/performance-stats.js"></script> + + <p class="test">This is just a test, not permanent.</p> </body> </html>
\ No newline at end of file |