Skip to content

Commit 941c0da

Browse files
authored
Merge pull request #658 from gsmet/index-page
Add a simple index page
2 parents 66d85e4 + 901e3ef commit 941c0da

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed
7.47 KB
Loading
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<html>
2+
<head>
3+
<style type="text/css">
4+
html, body {
5+
height: 100%;
6+
padding:0;
7+
margin: 0;
8+
background-color: #CCC;
9+
}
10+
.image {
11+
height: 40%;
12+
background-color: white;
13+
margin: 0;
14+
display: grid;
15+
place-items: end center;
16+
}
17+
.subtext {
18+
height: 20%;
19+
background-color: #5590cc;
20+
color: white;
21+
margin: 0;
22+
display: grid;
23+
place-items: center;
24+
font-family: Trebuchet MS, helvetica, sans-serif;
25+
font-size: 30px;
26+
}
27+
</style>
28+
</head>
29+
<body>
30+
<div class="image"><img src="images/quarkusbot_head_256px.png" width="256" height="256" /></div>
31+
<div class="subtext">Your GitHub App is running.</div>
32+
</body>
33+
</html>

0 commit comments

Comments
 (0)