mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-12 21:25:06 +00:00
30 lines
736 B
Plaintext
30 lines
736 B
Plaintext
<style>
|
|
body {
|
|
padding: 20px;
|
|
font-family: system, -apple-system, '.SFNSText-Regular', 'SF UI Text', 'Lucida Grande', 'Segoe UI', Ubuntu, Cantarell, sans-serif;
|
|
color: #fff;
|
|
background-color: #8aba87;
|
|
text-align: center;
|
|
}
|
|
|
|
p {
|
|
font-size: 32px;
|
|
}
|
|
|
|
#crash {
|
|
color: white;
|
|
opacity: 0.7;
|
|
position: absolute;
|
|
bottom: 20px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
font-size: 12px;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
|
|
<p>Click the text below to hang and then reload this process.</p>
|
|
<small>(This will take up to 30 seconds.)</small>
|
|
|
|
<a id="crash" href="javascript:process.hang()">Hang this process</a>
|