-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading.html
More file actions
88 lines (87 loc) · 2.51 KB
/
loading.html
File metadata and controls
88 lines (87 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>DaniocellDesktop</title>
<style type="text/css">
h1 {
font-family: Helvetica, Arial, sans-serif;
text-align: center;
}
h3 {
font-family: Helvetica, Arial, sans-serif;
text-align: center;
}
h4 {
font-family: Helvetica, Arial, sans-serif;
text-align: center;
}
.container {
display: block;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
text-align: center;
border: 1px solid #ffffff;
border-radius: 15px;
background-color: #052149;
color: #ffffff;
padding: 15px;
}
.hidden {
display: none;
}
button {
font-family: Helvetica, Arial, sans-serif;
font-size: 0.875rem;
margin-bottom: 10px;
color: #000;
background-color: #03c7e8;
border-color: #03c7e8;
border-radius: 8px;
border-width: 1px;
font-weight: bolder;
padding-top: 0.5em;
padding-left: 1em;
padding-right: 1em;
padding-bottom: 0.5em;
cursor: pointer;
text-transform: none;
transition:
color 0.15s ease-in-out,
background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out,
box-shadow 0.15s ease-in-out;
}
button:hover {
color: #000;
background-color: #29cfeb;
border-color: #1ccdea;
}
button:active {
color: #000;
background-color: #35d2ed;
border-color: #1ccdea;
}
button:focus-visible {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
</style>
</head>
<body style="background-color: #eeeeee">
<div id="loadingDiv" class="container">
<h1>DaniocellDesktop is starting up.</h1>
<img src="www/daniocell-logo-animated.gif" alt="Daniocell logo" width="604" height="156" />
<h3>This should just take a minute while R and Shiny start...</h3>
</div>
<div id="messageDiv" class="hidden">
<h1>DaniocellDesktop default port is in use.</h1>
<h4 id="message"></h4>
<button id="killBtn" type="button">Take Over Port <span id="oldPortSpan"></span></button>
<button id="portBtn" type="button">Use Port <span id="newPortSpan"></span> Instead</button>
<button id="exitBtn" type="button">Exit</button>
</div>
<script src="./renderer.js"></script>
</body>
</html>